Click here to Skip to main content
15,896,207 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
how I select multiple png images and convert it in one GIF image
Posted
Updated 26-Nov-13 1:29am
v2
Comments
ZurdoDev 26-Nov-13 7:31am    
Use a 3rd party control.

1 solution

If you want to turn multiple images into an animated gif you can try the command line tools that come with ImageMagick[^].

The following example will take all files ending in png from the current working directory and turn then into an animated gif:
> convert *.png animated.gif


[Edit]There seems to be a wrapper for .NET on codeplex: ImageMagick.NET[^][/Edit]

Regards,

— Manfred
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900