Created
November 17, 2013 03:38
-
-
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
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
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