gpt4 book ai didi

qt - 图像不显示在 QtForm 的中心

转载 作者:行者123 更新时间:2023-12-04 12:56:20 25 4
gpt4 key购买 nike

嗨,我正在使用 QLabel 在 QtForm 中显示图像。
我的代码是这样的

QVBoxLayout *layout = new QVBoxLayout;
QHBoxLayout *hLayout = new QHBoxLayout;
layout->setMargin(5);
QLabel *imageLabel = new QLabel;
QPixmap pixmap("/images/test.jpg");
imageLabel->setPixmap(pixmap);
imageLabel->setMask(pixmap.mask());
imageLabel->setMinimumSize(160, 160);
imageLabel->resize(500, 320);

layout->addWidget(imageLabel,0,Qt::AlignTop | Qt::AlignCenter);
hLayout->addItem(layout);

widget->setLayout(hLayout);

scrollArea->setWidget(widget);
setCentralWidget(scrollArea);

但是图像显示在左角,有人可以建议我将图像置于表单的中心吗

最佳答案

我得到了解决方案,

QPixmap pixmap("images/test.png");
imageLabel->setPixmap(pixmap);
imageLabel->setMinimumSize(160, 160);
imageLabel->resize(500, 320);
imageLabel->setAlignment(Qt::AlignCenter);


scrollArea->setWidget(widget);
setCentralWidget(imageLabel);

关于qt - 图像不显示在 QtForm 的中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13507493/

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