Skip to content

Instantly share code, notes, and snippets.

@10nin
Created June 10, 2013 13:14
Show Gist options
  • Save 10nin/5748617 to your computer and use it in GitHub Desktop.
Save 10nin/5748617 to your computer and use it in GitHub Desktop.
Create jpeg thumbnail fast.
#! /bin/sh
QUALITY=50
SIZE=120
OUTPUT='thumbnail/'${1%.*}'thumb.jpg'
convert -define jpeg:size=${SIZE} -quality ${QUALITY} -thumbnail ${SIZE} ${1} ${OUTPUT}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment