up vote 0 down vote favorite
share [g+] share [fb]

Is there a method to create a copy of an animated gif image using C#?
What I want is to generated a copy of a given gif image using the height and width parameters that the user provides. I have tried for a couple of hours to accomplish this but the resulting image does not preserve the original animations.
Thanks in advance.

link|improve this question
You mean resize correct? – cgreeno Feb 11 '09 at 22:09
Yes, thats what I mean. – Jaime Febres Feb 11 '09 at 23:23
feedback

1 Answer

up vote 1 down vote accepted

You need to loop through the frames in the animated GIF and resize each one.

May also want to take a look at GifLib.

link|improve this answer
Thank you very much, I'll take a look. – Jaime Febres Feb 11 '09 at 23:24
feedback

Your Answer

 
or
required, but never shown

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