I'm working on a Qt QML project, and I'm trying to display a simple image within my window, but nothing is displayed except for an empty window.
I put my image in a resource file (qrc
), and I provided the source with its exact path.
Main.qml
import QtQuick 2.4
import QtQuick.Window 2.4
Window {
width: 400
height: 400
Image {
id: image
x: 0
y: 0
width: 400
height: 400
source: "1.PNG"
fillMode: Image.PreserveAspectFit
}
visible: true
}
Pics.qrc
<RCC>
<qresource prefix="/pics">
<file>1.PNG</file>
</qresource>
</RCC>
main.cpp
#include <QGuiApplication>
#include <QQmlApplicationEngine>
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine;
const QUrl url(u"qrc:/Hello_Word/Main.qml"_qs);
QObject::connect(&engine, &QQmlApplicationEngine::objectCreationFailed,
&app, []() { QCoreApplication::exit(-1); },
Qt::QueuedConnection);
engine.load(url);
return app.exec();
}
How do I display 1.PNG
in my window
?
Based on this answer, you have to make the following modifications to your project:
CMakeLists.txt
:change
source
inmain.qml
to this:Your
qrc
file also needs to be changed to the following:Note: if you change the file you're using or use more than one, be sure to modify your project accordingly, specifically
qrc
file andmain.qml
.