Created
October 15, 2010 17:14
-
-
Save xeoncross/628563 to your computer and use it in GitHub Desktop.
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
# To batch process a whole folder of images you just copy them to a thumbnail folder and use ImageMagick to crop them to the size you want. | |
cd /home/user/photos/holidays | |
mkdir thumbs | |
cp /home/user/photos/holidays/* /home/user/photos/holidays/thumbs/ | |
cd thumbs | |
# To cut out a section of the image (not resizing it) widthXheight+xoffset+yoffset | |
mogrify -crop 940x300+0+50 * | |
# or to resize the image keeping the aspect ratio | |
mogrify -resize 940x300^ * |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment