gpt4 book ai didi

c++ - 如何在 QT 框架的 UI 上显示一个 "*.png"文件?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:05:44 24 4
gpt4 key购买 nike

我是 Qt Framework 的新手...

我想在我的 Form1.ui 中显示一张 .png 图片,所以我从小部件框中拖放了一个图形 View 我将 test.png 放在同一目录中(在项目文件夹内)

我在代码中做到了这一点

//Form1.cpp
#include "form1.h"
#include "ui_form1.h"

Form1::Form1(QWidget *parent) :
QWidget(parent),
ui(new Ui::Form1)
{
ui->setupUi(this);
ui->Pic1->setStyleSheet("background-image: url(test.png)");

}

Form1::~Form1()
{
delete ui;
}



//Form1.h
#ifndef FORM1_H
#define FORM1_H

#include <QWidget>

namespace Ui {
class Form1;
}

class Form1 : public QWidget
{
Q_OBJECT

public:
explicit Form1(QWidget *parent = 0);
~Form1();

private:
Ui::Form1 *ui;
};

#endif // FORM1_H

它编译完美,但图片没有出现,我做错了什么?

这是我的二维码:

最佳答案

您应该用来显示图片的小部件是 QLabel .您可以通过设置其 pixmap 属性直接从 QtCreator 执行此操作。

正如其他人所说,您应该首先创建一个资源文件,然后将图像添加到该资源文件中。要创建 Qt 资源文件,请转到菜单:文件 > Qt > Qt 资源文件。

编辑以编程方式进行:

//names starting with : means that they are on a resource file, 
//otherwise in the filesystem
QPixmap * mypix = new QPixmap(":/karim/test.png");
ui->your_label->setPixmap(mypix);
delete mypix;

关于c++ - 如何在 QT 框架的 UI 上显示一个 "*.png"文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6910946/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com