We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
When working with lossy image formats like JPEG, you can control how much the output image will be compressed by specifying its "quality".
The quality of the output JPEG image is specified using the -quality option, which you can specify as a saver option:
-quality
ImageProcessing::Vips .resize_to_limit(400, 400) .saver(quality: 75) # specify quality .call(image)
The quality of the output JPEG image is specified using the :Q saver option:
:Q
ImageProcessing::MiniMagick .resize_to_limit(400, 400) .saver(quality: 75) # specify quality .call(image)