Animated gif frame count & fps
How do I find out details of an animated gif? I need to know the number of images in a strip, and also the frame rate. I would like to convert the strip to a BufferedImage for animation.
[201 byte] By [
simywime] at [2007-9-26 4:53:41]

See http://www.fmsware.com/stuff/gif.html for a free decoder.It will give you a frame count, and return each frame as a BufferedImage. It will also tell you the duration of each frame (animated GIF's don't have a fixed frame rate).-- Kevin