Last active
January 3, 2016 10:33
-
-
Save mrdwab/b60ee81b26aa77d38af0 to your computer and use it in GitHub Desktop.
Image Magick snippets
This file contains hidden or 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
| # 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