原文作者:locky1218
原文地址:https://blog.csdn.net/locky1218/article/details/9749703/
一般使用相对位置的时候可能无法显示图片,可能是由于文件的相对位置错误。
#include<QDir>
#include<QDebug>
QDir dir;
QString pathname;
pathname = dir.currentPath();
qDebug()<<pathname;
以上语句可以找到当前工程的目录,然后将图片文件复制到当前文件下就可以了。比如我的一个程序运行后如下:
E:/QT/weather forecast/build-Weatherforecast-Desktop_Qt_5_6_2_MinGW_32bit-Release
可见是在debug文件下的。
图片引用方法如下:
QImage image;
if(false == image.load("Icons/weather-icon/200.png"))
{
qDebug()<<"false"<<endl;
}