Created
December 14, 2011 17:36
-
-
Save dublado/1477590 to your computer and use it in GitHub Desktop.
cria thumbnail preenchendo canvas com cor branca
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
convert 1.jpg -resize 450x450 -background white -gravity center -extent 450x450 1_g.jpg | |
for img in *; do convert $img -resize 180x180 -background white -gravity center -extent 180x180 $img|echo $img ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment