Skip to content

Instantly share code, notes, and snippets.

@djburdick
Created March 5, 2014 19:40
Show Gist options
  • Save djburdick/9374921 to your computer and use it in GitHub Desktop.
Save djburdick/9374921 to your computer and use it in GitHub Desktop.
Reducing png image sizes. #imagemagick
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