Skip to content

Instantly share code, notes, and snippets.

@picandocodigo
Created May 15, 2012 14:46
Show Gist options
  • Save picandocodigo/2702327 to your computer and use it in GitHub Desktop.
Save picandocodigo/2702327 to your computer and use it in GitHub Desktop.
Create thumbnails from images in a directory (with Imagemagick)
for i in *.jpg; do
convert -thumbnail 200 $i thumb.$i
done
@ThinkDigitalSoftware
Copy link

Thanks! Came in handy today

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment