Felix. 0 Posted November 19, 2021 Please recommend me a Firemonkey component (Windows, Android) to display GIF animations. Share this post Link to post
Lars Fosdal 1792 Posted November 19, 2021 https://stackoverflow.com/questions/45285599/how-to-use-animated-gif-in-firemonkey appears to have a working code example in the last comment? Note that I have NOT tested it. 1 Share this post Link to post
Felix. 0 Posted November 19, 2021 1 hour ago, Lars Fosdal said: https://stackoverflow.com/questions/45285599/how-to-use-animated-gif-in-firemonkey appears to have a working code example in the last comment? Note that I have NOT tested it. Thank you, I'll try it Share this post Link to post
Gustav Schubert 25 Posted November 19, 2021 What happens if you test out TMediaPlayer on Android? It seems to work on Windows. procedure TFormMain.FormCreate(Sender: TObject); begin { TMediaPlayerControl component instance } MediaPlayerControl.Align := TAlignLayout.Client; MediaPlayerControl.MediaPlayer := MediaPlayer; { TMediaPlayer component instance } MediaPlayer.FileName := 'TestGif.gif'; MediaPlayer.Play; end; 1 Share this post Link to post
vfbb 285 Posted November 19, 2021 (edited) Currently skia4delphi closed beta supports gif on all platforms. The next release will be available in 2 weeks. Edited November 19, 2021 by vfbb 1 Share this post Link to post