QLable 显示图片
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 }
作者:Ants_double
出处:https://www.cnblogs.com/ants_double/
本文版权归作者和博客园所有,欢迎转载。转载请在留言板处留言给我,且在文章标明原文链接,谢谢!
如果您觉得本篇博文对您有所收获,觉得我还算用心,请点击右下角的 [大拇指],谢谢!