Gif animate once
-
@MartinD In
AnimatedImage
you can useonFrameChanged
handler 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 }