Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to create gif animation from a stack of jpgs

I have around 200 jpg images. I need to stack them so that i can convert them into a simple animated gif image. Are there any free tools available to do that job? My os is windows. I'm not so bothered about the quality of the output.

like image 558
Bharath Avatar asked Jun 03 '11 17:06

Bharath


People also ask

How do I create an animated GIF from a JPEG?

To change the frame rate, choose Image > Stacks > Animation > Animation Options... Select File > Save As > Animated GIF... or AVI... and you're done.

How do you make a GIF with multiple pictures?

To do this, select File > Scripts > Load Files into Stack. A pop up window will appear that allows you to choose the GIF folder that you created in Step One. Click Browse to select and open your images and then click OK. Photoshop will create a new file with all of your images layered on top of each other.


1 Answers

Try using ImageMagick's convert utility. I have used it to create animated gifs from a set of images (in any format) in the past.

Use the command

convert -delay 20 -loop 0 *.jpg animated.gif
like image 199
Szabolcs Avatar answered Nov 03 '22 22:11

Szabolcs