In my application I generate a lot of different images (I keep them as QImage objects) and I was wondering if it would be possible to use these objects more or less directly with QML Image?
The only option I see is to write them to disk and then pass path to Image.source.
Is there any trick to avoid it?
Additional info: apart from static QIMages I also plan to generate gifs and possibly other files (all in memory) which I'll try to use with AnimatedImage or MediaPlayer so workaround for static image only is not enough for me.