Gif animate once
-
@MartinD In
AnimatedImageyou can useonFrameChangedhandler where in you can check current frame number and total number of frames in the gif and then stop the play when it matches. Something like:AnimatedImage { source: "animatedimage.gif" onFrameChanged: if(currentFrame==frameCount-1) playing = false }