Add some info about valid quality levels

This commit is contained in:
Daniel Barber 2020-02-26 19:23:59 -05:00
parent fe8ba17ced
commit a9e11fcfeb
2 changed files with 9 additions and 4 deletions

View file

@ -59,9 +59,12 @@ file. The available options are:
caveats about image resizing.
Default: 0 (disabled).
- **quality**: The quality level to use when encoding the image file when
downscaling to ``maxwidth``. The default behaviour depends on the method used
to scale the images. ImageMagick tries to estimate the input image quality and
uses 92 if it cannot be determined. Pillow defaults to 75.
downscaling to ``maxwidth``. Can be a number from 1-100 or 0 to disable.
Higher numbers result in better image quality while lower numbers will result
in smaller files. 65-75 is a good starting point. The default behaviour
depends on the method used to scale the images. ImageMagick tries to estimate
the input image quality and uses 92 if it cannot be determined. Pillow
defaults to 75.
Default: 0 (disabled)
- **remove_art_file**: Automatically remove the album art file for the album
after it has been embedded. This option is best used alongside the

View file

@ -43,7 +43,9 @@ file. The available options are:
too big. The resize operation reduces image width to at most ``maxwidth``
pixels. The height is recomputed so that the aspect ratio is preserved.
- **quality**: The quality level to use when encoding the image file when
downscaling to ``maxwidth``.
downscaling to ``maxwidth``. Can be a number from 1-100 or 0 to disable.
Higher numbers result in better image quality while lower numbers will result
in smaller files. 65-75 is a good starting point.
Default: 0 (disabled)
- **enforce_ratio**: Only images with a width:height ratio of 1:1 are
considered as valid album art candidates if set to ``yes``.