How TextArea displays gif?
Unsolved
QML and Qt Quick
-
Well... does it work? If yes, then you don't need to extend anything. If not - just use
AnimatedImage
. -
Well... does it work? If yes, then you don't need to extend anything. If not - just use
AnimatedImage
. -
Only a subset of HTML is supported - https://doc.qt.io/qt-5/richtext-html-subset.html.
If it does not work for you like that, do this:
- try with a .jpg or .png to see if this works at all
- try different URL schemes:
src=":/x.gif"
,src="://x.gif"
,src="qrc://x.gif"
. QRC is always very fragile when it comes to schemes
-
Only a subset of HTML is supported - https://doc.qt.io/qt-5/richtext-html-subset.html.
If it does not work for you like that, do this:
- try with a .jpg or .png to see if this works at all
- try different URL schemes:
src=":/x.gif"
,src="://x.gif"
,src="qrc://x.gif"
. QRC is always very fragile when it comes to schemes