1

I'm looking to use an animated GIF in my project. Ideally I don't want to use a third party app/API/plugin. I mean if a plugin exists there must surely be a way to program it natively?

All the examples I have looked at involve the aforementioned third party solutions.

rmaddy
  • 314,917
  • 42
  • 532
  • 579
Dan
  • 2,304
  • 6
  • 42
  • 69

1 Answers1

2

I've worked with many popular 3rd party gif players and I can tell you that you can probably copy/follow the implementation of a 3rd party library and use it on your own but the thing is, gif playing is a resource hog thing. A well maintained library would definitely be the way to go if you want performance and better resource management.

My suggestion would be FLAnimatedImage

Faisal Rahman Avash
  • 1,268
  • 9
  • 13
  • Thanks for the recommendation. I've resigned myself to having to explore this 3rd party players, I'll give it a look. Thanks, – Dan Apr 29 '19 at 03:31