Serializing Tons of Images
-
Hello Everyone, I wanted to ask what should I do to load huge amount of images to be displayed in albums as thumbnails and displayed on their original size. Any ideas ? P.S. all of this is done using qml
-
Hi
there is nothing in http://doc.qt.io/qt-5/qtquick-demos-photoviewer-example.html
that can be reused or its too slow? -
Hi
there is nothing in http://doc.qt.io/qt-5/qtquick-demos-photoviewer-example.html
that can be reused or its too slow?@mrjj I tried to extend this example to make it loading images from local directories using FolderListModel, but it's too slow, do you have any ideas ?
Moreover, I have a problem when I load new folder using File Dialog all loaded folders point to the same directory,
Thanks -
@mrjj I tried to extend this example to make it loading images from local directories using FolderListModel, but it's too slow, do you have any ideas ?
Moreover, I have a problem when I load new folder using File Dialog all loaded folders point to the same directory,
Thanks@Anas-A.-Ismail
Ok. sadly Im not into qml so best bet is someone answer in that group. -
@Anas-A.-Ismail
Ok. sadly Im not into qml so best bet is someone answer in that group.@mrjj Thanks, I do appreciate your help.
-
Hello Everyone, I wanted to ask what should I do to load huge amount of images to be displayed in albums as thumbnails and displayed on their original size. Any ideas ? P.S. all of this is done using qml
Have you tried setting the asynchronous property of the Image element to true?
http://doc.qt.io/qt-5/qml-qtquick-image.html#asynchronous-prop
-
Have you tried setting the asynchronous property of the Image element to true?
http://doc.qt.io/qt-5/qml-qtquick-image.html#asynchronous-prop
@t3685 Yes, I tried it and it didn't fix, I think I understood the problem,
actually the image are loaded in memory, I want to load their thumbnails only and load it into memory whenever I click on the thumbnail, do you have any ideas about this ?