Created
July 10, 2013 01:16
-
-
Save kshwetabh/5962749 to your computer and use it in GitHub Desktop.
Handy tool and commands to generate gif images from jpeg files in Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Required package/software: | |
sudo apt-get install imagemagick | |
Resize your .jpg images to a smaller size, such as 640×480 by using the following command: | |
mogrify -resize 640x480 *.jpg | |
Use the command below to create an animated gif of your jpg images | |
convert -delay 20 -loop 0 *.jpg myimage.gif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Another nice tool for Windows http://www.cockos.com/licecap/