Skip to content

Instantly share code, notes, and snippets.

@roidrage
Created August 8, 2009 16:53
Show Gist options
  • Save roidrage/164455 to your computer and use it in GitHub Desktop.
Save roidrage/164455 to your computer and use it in GitHub Desktop.
for i in `find . -name \*.jpg`
do
thumb=`echo $i | sed 's/\.jpg/_thumb.jpg/'`
small=`echo $i | sed 's/\.jpg/_small.jpg/'`
convert -resize 640x480 $i $small
convert -resize x75 $i $thumb
convert -crop '75x75!+12' $thumb $thumb
done
for i in `find . -name \*.jpg`
do
thumb=`echo $i | sed 's/\.jpg/_thumb.jpg/'`
small=`echo $i | sed 's/\.jpg/_small.jpg/'`
convert -resize 480x640 $i $small
convert -resize 75x $i $thumb
convert -crop '75x75!+0+12' $thumb $thumb
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment