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]
# 1
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
kweiner at 2007-6-29 18:46:36 > top of Java-index,Security,Cryptography...
# 2
You can use Jimi too ( http://java.sun.com/products/jimi/) to decode animated gif image :Enumeration images=Jimi.createJimiReader(inputStream, Jimi.SYNCHRONOUS).getImageEnumeration();
Celene at 2007-6-29 18:46:36 > top of Java-index,Security,Cryptography...