Skip to content

Instantly share code, notes, and snippets.

@mrdwab
Last active January 3, 2016 10:33
Show Gist options
  • Select an option

  • Save mrdwab/b60ee81b26aa77d38af0 to your computer and use it in GitHub Desktop.

Select an option

Save mrdwab/b60ee81b26aa77d38af0 to your computer and use it in GitHub Desktop.
Image Magick snippets
# CONVERT A SET OF PNGS TO A GIF
#
# -delay = the amount of time for each frame
# -loop = set to zero for infinite repeat
# +repage = in case you are having trouble with extra transparency around image
convert -delay 20 -loop 0 +repage *.png animate.gif
# CROP A SET OF PNGS TO SAME SIZE
#
# -crop = defined as: {width}x{height}+{x_coord}+{y_coord}
# Easy to get the coordinates with Gimp
mogrify -crop 165x279+606+459 *.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment