-
Notifications
You must be signed in to change notification settings - Fork 19
Description
Compress::set_quality
calls jpeg_set_quality
with force_baseline
parameter as FALSE
, which is not an issue as long as a decoder capable of reading non-baseline JPEG, like the IJG decoder, is used. For example, optimised JPEG decoder on macOS and iOS can not decode 16-bit quantization table entries which could be generated when force_baseline
parameter is FALSE
. While iOS does use libjpeg
as a fallback, it is slower and causes performance regressions. (This was an issue a year ago, it is possible that it has been fixed in latest versions of iOS and macOS).
Would it be possible to add the ability to set this parameter as TRUE
? Simply adding another parameter to Compress::set_quality
would be a breaking change, so adding another method like Compress::set_quality_and_force_baseline
could be a viable solution.
Relevant section in libjpeg manual:
https://github.com/mozilla/mozjpeg/blob/master/libjpeg.txt#L903