Skip to content

Instantly share code, notes, and snippets.

@henningjensen
Created September 27, 2012 20:49
Show Gist options
  • Save henningjensen/3796384 to your computer and use it in GitHub Desktop.
Save henningjensen/3796384 to your computer and use it in GitHub Desktop.
Imagemagick convert crop and cut to fit specific size
#!/bin/bash
for f in *.png; do
convert $f -thumbnail 200x200^ -gravity west -extent 200x200 thumbs/${f%.*}.png
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment