首页 > 代码库 > QT中给各控件增加背景图片(可缩放可旋转)的几种方法
QT中给各控件增加背景图片(可缩放可旋转)的几种方法
1. 给QPushButton 增加背景图片:背景图片可根据Button大小自由缩放。
[cpp] view plain copy
- void setButtonBackImage(QPushButton *button,QString image,int sizeW, int sizeH)
- {
- //163,163为原始分辨率,这里稍做了调整。
- QPixmap pixmap(image);
- QPixmap fitpixmap=pixmap.scaled(163,163).scaled(sizeW, sizeH, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
- button->setIcon(QIcon(fitpixmap));
- button->setIconSize(QSize(sizeW,sizeH));
- button->setFlat(true);//就是这句能够实现按钮透明,用png图片时很有用
- button->setStyleSheet("border: 0px");//消除边框,取消点击效果
- }
2. 给QWidget 增加背景图片:图片可自由缩放。
[cpp] view plain copy
- this->setAutoFillBackground(true); //Widget增加背景图片时,这句一定要。
- QPixmap pixmap(":/images/bg_news.png");
- QPixmap fitpixmap=pixmap.scaled(1200, 1200).scaled(config->mainWindowW,config->mainWindowH, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
- QPalette palette;
- palette.setBrush(QPalette::Background, QBrush(fitpixmap));
- this->setPalette(palette);
3. 给QLabel 增加背景图片:图片可自由缩放。
[cpp] view plain copy
- QPixmap pixmap(normalIcon);
- QPixmap fitpixmap=pixmap.scaled(labelIcon->width(), labelIcon->height(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
- labelIcon->setPixmap(fitpixmap);
4. 采用QSS样式,增加背景图片,图片显示原始比例。
[cpp] view plain copy
- lastBtn->setStyleSheet("background-image: url(:/images/btn_previous_normal.png);border: 0px");
QPixmap旋转图片:
[cpp] view plain copy
- QMatrix leftmatrix;
- leftmatrix.rotate(270);
- ui->label->setPixmap(pixmap.transformed(leftmatrix,Qt::SmoothTransformation));
http://blog.csdn.net/liukang325/article/details/44832397
QT中给各控件增加背景图片(可缩放可旋转)的几种方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。