Last active
August 29, 2015 14:01
-
-
Save stormsson/6d680e4161bdf9268bc3 to your computer and use it in GitHub Desktop.
SH - Batch resize (Mogrify-imagemagick)
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
mogrify -path ../resized -resize '1280x1200>' -quality 90 *.jpg | |
ridimensiona | |
find . -type f -name "*.jpg" -print0 | xargs -0 mogrify -resize '1280x1200>' -quality 90 | |
ridimensiona jpg in tutte le sottocartelle | |
find . -type f -name "*.jpg" -print0 | xargs -0 mogrify -resize '1280x1200>' -quality 80 | |
ridimensiona e croppa al centro | |
find . -type f -name "season*.jpg" -print0 | xargs -0 mogrify -resize '290x290^' -gravity Center -crop 290x290+0+0 +repage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment