0
當我使用QtCreator 2.7.0運行程序時,會出現一個空白的應用程序窗口。當我在釋放文件夾中運行可執行文件時,它可以工作。可能是什麼問題?QLabel在從QtCreator運行時不顯示圖像
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QLabel topLevelLabel;
QPixmap pixmap("gem.jpg");
topLevelLabel.setPixmap(pixmap);
topLevelLabel.setMask(pixmap.mask());
topLevelLabel.show();
return app.exec();
}
我想問題是在相對路徑。嘗試使用絕對值,或者更好 - 將圖像添加到資源。 – Amartel