要将图片放在label中显示,首先设置label控件的大小:
(1)手动拖拽;
(2)代码设置:label->setFixedSize(500,350)//设置长和宽
然后要想图片适应label的大小,代码如下:
QImage image;
image.load("/home/dionysusxyy/Pictures/timg.jpg");
QImage resultImg=image.scaled(picturelabel->size(),Qt::KeepAspectRatio,Qt::SmoothTransformation);
picturelabel->setPixmap(QPixmap::fromImage(resultImg));
picturelabel->show();
要想label适应图片的大小,代码如下:
(一)
QImageReader reader("/home/dionysusxyy/Pictures/timg.jpg");
reader.setAutoDetectImageFormat(true);
const QImage newImage = reader.read();
picturelabel->setPixmap(QPixmap::fromImage(newImage));
(二)
QPixmap map("/home/dionysusxyy/Pictures/timg.jpg");
picturelabel->setPixmap(map);
picturelabel->resize(map.width(),map.height());//或者下一行
picturelabel->setScaledContents(true);