我正在为我的应用程序使用QT,最后使用QLabel来显示图像。但是,它显示为裁剪。 如何将QLabel的大小设置为其pixmap之一?如果像素图发生变化会如何改变呢?如何做到这一点?
答案 0 :(得分:8)
// Call this function whenever you want to change the label's pixmap
void SetPixmapLabel(QLabel * myLabel, const QPixmap & pixmap)
{
myLabel->setPixmap(pixmap);
myLabel->setFixedSize(pixmap.size());
}