1. 程式人生 > >QT中給各控制元件增加背景圖片(可縮放可旋轉)的幾種方法

QT中給各控制元件增加背景圖片(可縮放可旋轉)的幾種方法

1. 給QPushButton 增加背景圖片:背景圖片可根據Button大小自由縮放。

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 增加背景圖片:圖片可自由縮放。
    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 增加背景圖片:圖片可自由縮放。
    QPixmap pixmap(normalIcon);
    QPixmap fitpixmap=pixmap.scaled(labelIcon->width(), labelIcon->height(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
    labelIcon->setPixmap(fitpixmap);
4. 採用QSS樣式,增加背景圖片,圖片顯示原始比例。
lastBtn->setStyleSheet("background-image: url(:/images/btn_previous_normal.png);border: 0px");

QPixmap旋轉圖片:

    QMatrix leftmatrix;
    leftmatrix.rotate(270);
    ui->label->setPixmap(pixmap.transformed(leftmatrix,Qt::SmoothTransformation));