Timo Kokkonen
Timo Kokkonen
Doesn't the _--treshold_ option pretty much allow doing this? Something like: "-m95 -T1" (or "--max=95 --treshold=1")
Is there examples to do builds just with CMake etc (wouldn't want to maintain Visual Studio project files, etc..) ? It would be nice to have action that builds Linux,...
Both examples seem to point issue in libjpeg.so.8 (what was the exact version of libjpeg that jpegoptim was linked against?)
How exactly is this an issue in jpegoptim? Stack traces clearly show issue in libjpeg.so.8, and not in jpegoptim.... or am I missing something?
I would guess this has something to do with the JPEG library that jpegoptim was compiled against... (seen weird behavior with libjpeg-turbo in the past...) I tested with latest (compiled...
What makes you think this is issue with jpegoptim? Stack trace clearly shows it was (code in) libjpeg.so that seems to have made out-of-bounds read....
I'm not really familiar with CMake so not sure if this is "correct" way to fix the issue. But it definitely fixed the issue I was having...
I opened pull request: https://github.com/raspberrypi/pico-sdk/pull/1050
I seem to recall that, _jpegoptim_ discards any JFIF marker(s) found in the input image, since _libjpeg_ adds one in the output image on its own. This is done to...
I had never given much thought about how JFIF markers were handled. It was left to whatever was default behavior of the JPEG library being used. I made change (22b1dd82f30d86cff26de86946be17785c689908)...