Clinton Ingram
Clinton Ingram
> If you have to create a custom fork, reapply the optimizations, and then keep the fork up to date with upstream, wouldn't it be easier to just use mozjpeg...
Howdy! In general, you can change the default options for a codec just after registration, like this: ```cs CodecManager.Configure(codecs => { // locate the desired codec var png = codecs.OfType().First(c...
I've just published v0.14.1 with the fix, so the reflection workaround is no longer necessary. Something like this should work: ```c# CodecManager.Configure(codecs => { // locate the JPEG codec var...
It's been a while, but I don't remember any particular challenges. I think I mostly gave up on AVIF because of the question marks around browser support and the insane...
Thanks, I missed that one. I haven't had a chance to put together good benchmarks myself yet, but I've seen conflicting info on the image quality vs performance between AOM...
Howdy! Thanks for the test case. My current test suite only has a limited collection of corrupt images, so there are definitely places where `libpng` might return an error that...
I had a quick look at the Chromium fork of `libpng` to see if they were doing something different here, and they're not, at least at the `libpng` level. https://source.chromium.org/chromium/chromium/src/+/main:third_party/libpng/pngread.c;l=551...
I've finally published a new set of packages with this fix.
Do you have a minimal repro? What versions of the packages and SDK are you using? Did you get an actual error message during build, or are you just missing...
Closing due to lack of detail. Feel free to re-open if you can provide a repro.