标签:scale str set ntb idt led new attr label
图片放在QLabel上,注意设置QLable一些属性
QImage img("test.png"); img = img.scaledToWidth(400,Qt::SmoothTransformation); QLabel* label = new QLabel(this, Qt::FramelessWindowHint|Qt::Tool); label->setPixmap(QPixmal::fromImage(img)); label->setGeomtry(0,0,400,300); label->setAttribute(Qt::WA_TranslucentBackground); label->show();
标签:scale str set ntb idt led new attr label
原文地址:https://www.cnblogs.com/coolbear/p/11719535.html