-
Notifications
You must be signed in to change notification settings - Fork 259
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
Use dithering #21
Comments
I implemented Floyd-Steinberg dithering in the past, but it was not worth it. I think we need some compression-friendly dithering. Do you know anybody who could help us? |
pngquant uses Floyd-Steinberg modified for better color handling. I believe, that dithering will always increase filesize because of its' random nature.
I think, we may ask @kornelski. |
I mean, I made three versions of image:
B looked as nice as C, but was slightly larger, so I thought that allowing more colors is better than dithering (both increase the file size). I think we need dithering, that consists of some repetitive patterns, i.e. it should be "friendly" to Deflate algorithm - make B have only 20 kB (so it is still as nice as C, but smaller). BTW. I also think, that pngquant performs a better Deflate (which also takes about 100x more time than UPNG.js: e.g. 30ms vs. 3000ms), so it can make B have only 20 kB, while using the same dithering as I did. |
Oh, I see. pngquant computes mse error, have min and max quality settings and don't write file if its' size too big or quality degrades dramatically. Maybe you find this thread useful And this project particually |
Yes, pngquant calculates mean square error, and applies dithering only in areas with high error. This way areas that don't need dithering don't get the extra noise. pngquant also does edge detection (similar to Prewitt algorithm) and disables dithering on the edges. This prevents anti-aliasing look like fur. In pngquant 90% of time is spent on extra runs of K-means. If you use (BTW, TinyPNG doesn't have its own algorithm. It's just a GUI for pngquant). |
It's important for colorful images.
Source image [174285 B]
After upng, web interface [69927 B]
Result of pngquant looks better. [69932 B]
The text was updated successfully, but these errors were encountered: