Skip to content

Instantly share code, notes, and snippets.

@jdoss
Created July 24, 2015 19:54
Show Gist options
  • Save jdoss/b44b7d7fa4a98a8a9be0 to your computer and use it in GitHub Desktop.
Save jdoss/b44b7d7fa4a98a8a9be0 to your computer and use it in GitHub Desktop.
Make thumbnails and optimize images
http://stackoverflow.com/questions/985725/tools-for-jpeg-optimization
http://www.imagemagick.org/script/command-line-options.php#gravity
http://superuser.com/questions/275476/square-thumbnails-with-imagemagick-convert
# Convert with focus on north gravity of image
convert -define jpeg:size=800x600 image1.jpg -thumbnail 800x600^ -gravity north -extent 800x600 image1_thumb.jpg
# Convert from the center of image
convert -define jpeg:size=800x600 image2.jpg -thumbnail 800x600^ -gravity center -extent 800x600 image2_thumb.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment