CodeGuy
CodeGuy

Reputation: 28905

Make gif from multiple PNG files

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

Upvotes: 11

Views: 13649

Answers (3)

Greg
Greg

Reputation: 1842

Both ImageMagick and GIMP will do it. With ImageMagick and PhotoStage I got an animation working and exported to an .mp4 file.

Upvotes: 0

Charles Goodwin
Charles Goodwin

Reputation: 6652

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

Upvotes: 14

Piotr Chabros
Piotr Chabros

Reputation: 475

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

Upvotes: 3

Related Questions