Make GIFs from PNG wit ImageMagick
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
mogrify *.png -gravity South -crop 1200x860+0+0 +repage *.png | |
convert -delay 50 *.png -colors 256 -loop 0 toT5_50.gif | |
convert toT5_50.gif -resize 310x215 tot5_50_tumb.gif | |
#Also could have used percentage resize: | |
#convert toT5_50.gif -resize 25% -colors 256 toT5_50_tumb.gif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment