Last active
November 11, 2015 14:44
-
-
Save gaintsev/25679069042905855f2b to your computer and use it in GitHub Desktop.
Imagemagick Crop and Resize
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
#!/bin/sh | |
DIRECTORY="thumbnails" | |
if [ ! -d "$DIRECTORY" ]; then | |
mkdir "$DIRECTORY" | |
fi | |
for i in *.jpg; do | |
convert $i -resize 300x225^ -gravity center -crop 300x225+0+0 thumbnails/$(basename $i); | |
done | |
echo "Done! Images save to '$DIRECTORY' directory" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment