在 QLabel 中显示图像
我创建了一个 Qt 界面,添加一个 Qlabel 并将像素图设置为图像。 imagelabel =
new QLabel(centralwidget);
imagelabel->setObjectName(QString::fromUtf8("imagelabel"));
imagelabel->setGeometry(QRect(20, 10, 371, 311));
imagelabel->setPixmap(QPixmap(QString::fromUtf8(":/liqi/kinect.png")));
这是 ui_mainwindow.h 中显示的代码 当我使用 Qtdesigner 预览它时,可以显示图像。但是当我使用代码块运行时,按钮等一切都很好,但图像没有出现。我需要在下面的部分中添加任何内容吗?
MainWindow::MainWindow(Tqt_interface* tqt, QWidget *parent ) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
I have created a Qt interface, add a Qlabel and set pixmap to an image. imagelabel =
new QLabel(centralwidget);
imagelabel->setObjectName(QString::fromUtf8("imagelabel"));
imagelabel->setGeometry(QRect(20, 10, 371, 311));
imagelabel->setPixmap(QPixmap(QString::fromUtf8(":/liqi/kinect.png")));
this is the code displayed in ui_mainwindow.h
when i preview it using the Qtdesigner, the image can be displayed. But when i run using codeblocks, everything like buttons etc is fine but the image does not appear. Do i need to add anything into the section below ?
MainWindow::MainWindow(Tqt_interface* tqt, QWidget *parent ) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
":/liqi/kinect.png"
':' 表示您正在尝试打开作为资源包含的图像。确保您有 .qrc 文件并将其添加到 .pro 项目文件中。类似:还要确保图像位于
.qrc
文件中。":/liqi/kinect.png"
':' means you are trying to open image that is included as resource. Make sure u have.qrc
file and it is added in.pro
project file. Like:Also make sure that image is in the
.qrc
file.