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

QLable 显示图片

时间:2016-09-19 07:51:37      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

1,各种对就是不显示,因为路径中有其它符号如\n\r什么的

技术分享
 1 QStringList FileOpeartion::PathCombine (const QString strPath, QStringList strListTemp)
 2 {
 3     QStringList strReturn;
 4     
 5     foreach (const QString &str, strListTemp)
 6     {
 7         if (!str.isEmpty())
 8         {
 9             strReturn << strPath.trimmed() + str.trimmed();
10         }
11     }
12     
13     return strReturn;
14 }
15 
16 
17 QPixmap FileOpeartion::GetPicture (QString strPath, int mWidth, int mHeight)
18 {
19     QPixmap pictureimg;
20     //"D:dataFolder/2015/03/15/AIA094/20150315_001402_1024_0094.jpg"
21     
22     if (pictureimg.load (strPath))
23     {
24         pictureimg = pictureimg.scaled (mWidth, mHeight, Qt::KeepAspectRatio);
25     }
26     
27     return pictureimg;
28 }
View Code

 

QLable 显示图片

标签:

原文地址:http://www.cnblogs.com/billly/p/5883773.html

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