0

如何在 Qlabel 或 QScrollArea 中显示更多数量(文件夹)的图像?

QImage image("E:/Raul/Images");
  ui.label->setPixmap(QPixmap::fromImage(image));

像这样,但我希望在一个标签中加载更多数量的图像。

4

1 回答 1

1

结果:

在此处输入图像描述

代码:

#include <QApplication>
#include <QLabel>
#include <QLineEdit>
#include <QPointer>
#include <QPushButton>
#include <QVBoxLayout>
#include <QWizardPage>

#include <QDebug>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    QWidget widget;
    QVBoxLayout *layout=new QVBoxLayout();
    QLabel *label=new QLabel("<img src=:/0_0.jpg align=middle><img src=:/0_1.jpg align=middle><strong>Hello</strong> "
    "<font color=red>Sai Raul!");
    layout->addWidget(label);
    widget.setLayout(layout);
    widget.show();
    return a.exec();
    //
}

QLabel不是网络浏览器,因此超链接之类<img src=/media/cc0-images/grapefruit-slice-332-332.jpg/>的不起作用,但是为什么来自资源的图像不能这样做)))。

于 2021-10-21T11:06:43.273 回答