Created
March 5, 2014 19:40
-
-
Save djburdick/9374921 to your computer and use it in GitHub Desktop.
Reducing png image sizes. #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
convert -quality 75 img.png img.jpg # jpg is a lossy format so will prob be smaller than png | |
- or - | |
to keep in png format use: | |
pngquant --quality=0-80 img.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment