vote up 1 vote down star

This is brought on by a previous question. Apparently ImageList doesn't support animated GIFs, so I'm stuck animating it myself.

I know how to extract the frames, but does anyone know how to extract the frame timing information from an animated GIF?

flag

55% accept rate

1 Answer

vote up 1 vote down check

You can get the duration of the current frame (having called SelectActiveFrame), using a call to Image.GetPropertyItem, as such:

var duration = image.GetPropertyItem(0x5100).Value;

I believe the duration value is measured in 1/100ths of seconds.

link|flag
1  
Excellent. Now that I look a little harder (specifically for image propertyitem), I find a list at bobpowell.net/discoverproperties.htm but I was not going to find this one easily. Thanks! – lc Jul 15 at 18:50
No problem. Also, that's a good resource you've found there; I would have linked you to a list of all the property codes for animated GIFs, but I couldn't find one at the time. – Noldorin Jul 15 at 19:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.