I have a problem trying to load an image from an absolute path from qml. (from a relative path everything goes well)
Image {
id : myimage
source: qsTr("qrc:///")+imagePath
}
My image path is a well defined windows path.
I tried many suggestions that I found while googling:
Like starting with file:///
or with qrc:///
Nothing I found worked. It can not load the image.
Is there something I am missing here?