/ Published in: Bash
URL: http://www.imagemagick.org/Usage/thumbnails/#fit
Input: .jpg images of current directory\r\n\r\nOutput: the thumbnails will be generated in \'thumb\' folder
Expand |
Embed | Plain Text
find . -maxdepth 1 -iname '*jpg' -exec convert {} -thumbnail x200 -resize '200x<' -resize 50% -gravity center -crop 100x100+0+0 +repage -format jpg -quality 91 thumb/{} \;
You need to login to post a comment.
