标签:idt qstring map code 方法 pre 指针 ima button
方法一(只对QLabel有用)、
//label是QLabel的对象指针
ui->label->setScaledContents(true);
方法二(对两种都有用)、
QString imagepath = ":/images/btn.png";
QPixmap image0(imagepath);
QPixmap image = image0.scaled(QSize(this->width(),image0.height()));
/*
这个scaled是把图片本身方法或者缩小,然后你把图片放到QLabel或者QPushButton中就可以做到这种效果
*/
bel和QPushButton插入图片自适应label大小等比缩放
标签:idt qstring map code 方法 pre 指针 ima button
原文地址:https://www.cnblogs.com/kongbursi-2292702937/p/14779067.html