Skip to content

Instantly share code, notes, and snippets.

@dublado
Created December 14, 2011 17:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dublado/1477590 to your computer and use it in GitHub Desktop.
Save dublado/1477590 to your computer and use it in GitHub Desktop.
cria thumbnail preenchendo canvas com cor branca
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