Skip to content
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

Closed
lfilho opened this issue Aug 5, 2013 · 5 comments
Closed

pngquant support? #14

lfilho opened this issue Aug 5, 2013 · 5 comments

Comments

@lfilho
Copy link

lfilho commented Aug 5, 2013

Have you guys considered pngquant (http://pngquant.org/) as a worker?

@toy
Copy link
Owner

toy commented Aug 5, 2013

Need to check. From quick look seems that there should be an option to either optimize png using other workers or use only pngquant. But probably some workers can still do something with 8-bit PNG. Investigation welcome.

@lencioni
Copy link
Contributor

pngquant is great. At Causes we routinely run our images through pngquant first and then optipng with good results.

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

find piped to xargs for parallelization.

@nybblr
Copy link
Contributor

nybblr commented Jan 23, 2014

👍 on this, any implementation in the works? I'd be interested in putting together a worker.

@toy
Copy link
Owner

toy commented Aug 19, 2014

@lfilho @lencioni @nybblr Please have a look at v0.15

@toy toy closed this as completed Aug 19, 2014
@lfilho
Copy link
Author

lfilho commented Aug 20, 2014

Looks good! 👍 Thanks guys

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants