-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pngquant support? #14
Comments
Need to check. From quick look seems that there should be an option to either optimize png using other workers or use only |
We use a script that currently looks like this: find . -name "*.png" -print0 | xargs -0 -P8 -n1 pngquant --force --ext .png --speed 1
find . -name "*.png" -print0 | xargs -0 -P8 -n1 optipng -o7 -quiet
|
👍 on this, any implementation in the works? I'd be interested in putting together a worker. |
Looks good! 👍 Thanks guys |
Have you guys considered
pngquant
(http://pngquant.org/) as a worker?The text was updated successfully, but these errors were encountered: