-
Notifications
You must be signed in to change notification settings - Fork 125
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
Enable brute Zopfli iterations #660
Comments
Unfortunately this is similarly deferred until the next major release as it would also be a breaking change to the API. I'm tempted to start a v10 branch though so you can at least play around with some builds... |
Yes, I think this and #658 should be implemented for the next major release, which I don't know when will it be. |
I didn't try it on different images. Maybe it will work well on photos but on a "cartoon" like images which consist primarily from solid areas |
@andrews05 - neat; just wanted to keep it on the road map. |
@ace-dent It is talked here about allowing user to set values great than 255 up to 2^64. Currently parameter is u8 so it is bound to 255 if it is changed to u64, it brakes API/ABI. I am sure that you doesn't really need something bigger than 2^24. Brute force would mean all possible paths... If you need good compression just use webp which is widely supported and if to believe to internet is faster. After using 255 you won't squeeze much (I guess so). Or use JPEG XL which compresses even better than webp but is almost unsupported by software and is slower... |
@ace-dent The issue is that the zopfli API option
But if we add |
Originally posted by @AlexTMjugador in #640 (comment)
The text was updated successfully, but these errors were encountered: