Created
February 9, 2015 20:52
-
-
Save max-mapper/59f41bb6f867f3131ad9 to your computer and use it in GitHub Desktop.
resize 640 square photos for widescreen
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
for f in *.jpg; do | |
convert ./"$f" -gravity center -background black -extent 1137x640 ./"new-$f" | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
see fork https://gist.github.com/jlord/0c8a7c3e727a25131a41