How to using external storage to save Images on QtQuick
Unsolved
Mobile and Embedded
-
Hi,
i want to use external storage to store all images for Project.Is it possible in Qt?
-
@thuongnv284 Do you mean you want to store images in your app at runtime? Or do you want to store images used in your app somewhere?
-
@thuongnv284
well, QImage has a save functionalityYou just have to give it a valid path
-
@thuongnv284 With QML/QtQuick you cannot do this. You will need to write C++ code using QFile or whatever to write the files.
-
@thuongnv284 You can do this - you just need to provide the correct path to the image.