Skip to content

Instantly share code, notes, and snippets.

@kshwetabh
Created July 10, 2013 01:16
Show Gist options
  • Save kshwetabh/5962749 to your computer and use it in GitHub Desktop.
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
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
@kshwetabh
Copy link
Author

Another nice tool for Windows http://www.cockos.com/licecap/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment