I have a project with several QML
files. All of them are inside resource file. Now I want to load external image, from local file system. But I cannot find a way to do that.
Image {
source: "images/image.png" // that tries to load file as 'qrc:/images/image.png'
source: "file://images/image.png" // that does not work (file not found)
}
So now I'm a bit confused, how can I load the file in right way?