Does anyone know if there is a way to provide an animated image AnimatedImagewithout using url? The thing is, I get base64 encoded GIFs via HTTPS, which I want to display with AnimatedImage. I was thinking about using QQuickImageProvider, but unfortunately QQuickImageProvideryou can’t use with AnimatedImage, but only with Image. (see also https://bugreports.qt.io/browse/QTBUG-30524 ).
Can anyone think of another way to do this? The only thing I can think of is actually writing the file to disk and using a parameter url(which is really inefficient).
source
share