码迷,mamicode.com
首页 > 其他好文 > 详细

Qt 图像缩放显示

时间:2019-01-30 11:04:57      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:round   ignore   缩放   spec   tran   fit   width   scale   keep   

1.

  

 QImage Image;
    Image.load(":/images/f1.png");
    QPixmap pixmap = QPixmap::fromImage(Image);
    int with = secene->width ();//要显示的宽度
    int height =secene->height ();
    QPixmap fitpixmap = pixmap.scaled(with, height, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);  // 饱满填充
    //QPixmap fitpixmap = pixmap.scaled(with, height, Qt::KeepAspectRatio, Qt::SmoothTransformation);  // 按比例缩放

    view->setBackgroundBrush(fitpixmap);

 

Qt 图像缩放显示

标签:round   ignore   缩放   spec   tran   fit   width   scale   keep   

原文地址:https://www.cnblogs.com/ike_li/p/10336934.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!