Skip to content

Instantly share code, notes, and snippets.

@gaintsev
Last active November 11, 2015 14:44
Show Gist options
  • Save gaintsev/25679069042905855f2b to your computer and use it in GitHub Desktop.
Save gaintsev/25679069042905855f2b to your computer and use it in GitHub Desktop.
Imagemagick Crop and Resize
#!/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