Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to resize animated gif file using C#? [duplicate]

Tags:

c#

Dear all,
I need to re-size an animated gif file on my provided size, using C#.How can i do that.I search the solution on the google but don't get any proper solution.I already see the atalasoft,codeproject,giflib on codeplex but non of this is proper solution.So, Please help me just re-size an animated gif file using c#.

thanks in advance
Riad

like image 596
riad Avatar asked Nov 14 '22 06:11

riad


1 Answers

Actually, no quick-and-dirty method exists.

You will need to split the GIF into separate frames, then re-size each individual frame, then re-assemble the GIF image.

And sorry, I do not have the code to provide you, other than to refer you to Google

like image 141
Dekker500 Avatar answered Dec 25 '22 14:12

Dekker500