The speed of the animated GIF is part of the actual file header. Therefore, there are two ways to control the speed of an animated GIF:
- One way is to write an application to ignore frame rate data in the file header. This will be about writing lower level code, rather than relying on all the ready-made libraries that you are using.
- Another solution would be to change the frame rate data in before loading. Again, this will require some research, but it has the advantage of not creating your own custom image of the viewer.
Good luck.
source
share