Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make gif from multiple PNG files

Tags:

java

png

gif

I'm trying to combine about 45 png files to make a gif, or to make a video, or some type of movie or animated image.

Please provide ideas for how I can do this? Is there free software I can download? Is there Java code I can write to do this? etc.

Thanks

like image 415
CodeGuy Avatar asked Sep 25 '11 00:09

CodeGuy


2 Answers

You can use ImageMagick. There's plenty of documentation on creating GIF animations.

It may be as simple as:

convert -delay 20 -loop 0 *.png myanimation.gif
like image 75
Charles Goodwin Avatar answered Sep 28 '22 02:09

Charles Goodwin


You can use a free program called GIMP. There are plenty of videos on youtube saying how to do that.

like image 20
Piotr Chabros Avatar answered Sep 28 '22 00:09

Piotr Chabros