Created
July 24, 2015 19:54
-
-
Save jdoss/b44b7d7fa4a98a8a9be0 to your computer and use it in GitHub Desktop.
Make thumbnails and optimize images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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