mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-13 13:16:52 +03:00
Merge pull request #4840 from essarrjay/patch-1
Image.thumbnail docstring: added missing filters
This commit is contained in:
commit
2e029d9a79
|
@ -2273,8 +2273,9 @@ class Image:
|
||||||
|
|
||||||
:param size: Requested size.
|
:param size: Requested size.
|
||||||
:param resample: Optional resampling filter. This can be one
|
:param resample: Optional resampling filter. This can be one
|
||||||
of :py:data:`PIL.Image.NEAREST`, :py:data:`PIL.Image.BILINEAR`,
|
of :py:data:`PIL.Image.NEAREST`, :py:data:`PIL.Image.BOX`,
|
||||||
:py:data:`PIL.Image.BICUBIC`, or :py:data:`PIL.Image.LANCZOS`.
|
:py:data:`PIL.Image.BILINEAR`, :py:data:`PIL.Image.HAMMING`,
|
||||||
|
:py:data:`PIL.Image.BICUBIC` or :py:data:`PIL.Image.LANCZOS`.
|
||||||
If omitted, it defaults to :py:data:`PIL.Image.BICUBIC`.
|
If omitted, it defaults to :py:data:`PIL.Image.BICUBIC`.
|
||||||
(was :py:data:`PIL.Image.NEAREST` prior to version 2.5.0).
|
(was :py:data:`PIL.Image.NEAREST` prior to version 2.5.0).
|
||||||
See: :ref:`concept-filters`.
|
See: :ref:`concept-filters`.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user