在 QLabel 中显示图像

发布于 2024-12-08 18:06:39 字数 620 浏览 0 评论 0原文

我创建了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

聊慰 2024-12-15 18:06:40

":/liqi/kinect.png" ':' 表示您正在尝试打开作为资源包含的图像。确保您有 .qrc 文件并将其添加到 .pro 项目文件中。类似:

RESOURCES += res.qrc

还要确保图像位于 .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:

RESOURCES += res.qrc

Also make sure that image is in the .qrc file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文