ImageOptim / mozjpeg-rust

Safe Rust wrapper for the MozJPEG library
https://lib.rs/mozjpeg
Other
75 stars 19 forks source link

Add scaling during decompression, grayscale output and decompressor parameters #1

Closed surban closed 6 years ago

surban commented 6 years ago

This PR adds support for rescaling of the output image during JPEG decompression. This can be very useful to quickly generate a preview of a large JPEG file, as it is much faster than decompressing the file at full resolution and rescaling it afterwards.

The PR also adds support for gray-scale output as well as setting some decompressor parameters controlling the trade-off between speed and quality.

kornelski commented 6 years ago

Thank you