Skip to content

Instantly share code, notes, and snippets.

@bertrandom
Created November 17, 2013 03:38
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 bertrandom/7508762 to your computer and use it in GitHub Desktop.
Save bertrandom/7508762 to your computer and use it in GitHub Desktop.
Resize a bunch of images to exactly 640x480 with black borders if they don't fit the dimensions
ls *.jpg | xargs -n1 sh -c 'convert $0 -resize 640x480 -background "#000000" -gravity center -extent 640x480 fixed/$0'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment