Created
November 3, 2011 05:02
-
-
Save rahim/1335809 to your computer and use it in GitHub Desktop.
Reduce all JPEGs in folder to 500px wide and 75% quality using ImageMagick's mogrify
This file contains 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
#!/bin/bash | |
mogrify -strip -type optimize -filter Cubic -resize 500x -quality 75% *.jpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment