Skip to content

Instantly share code, notes, and snippets.

@stormsson
Last active August 29, 2015 14:01
Show Gist options
  • Save stormsson/6d680e4161bdf9268bc3 to your computer and use it in GitHub Desktop.
Save stormsson/6d680e4161bdf9268bc3 to your computer and use it in GitHub Desktop.
SH - Batch resize (Mogrify-imagemagick)
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