mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-25 01:16:16 +03:00
Merge pull request #2034 from uploadcare/release-notes-3.4
Release note about new filters
This commit is contained in:
commit
7bfd2ca4c0
15
docs/releasenotes/3.4.0.rst
Normal file
15
docs/releasenotes/3.4.0.rst
Normal file
|
@ -0,0 +1,15 @@
|
|||
|
||||
3.4.0
|
||||
-----
|
||||
|
||||
New resizing filters
|
||||
====================
|
||||
|
||||
Two new filters available for ``Image.resize()`` and ``Image.thumbnail()``
|
||||
functions: ``BOX`` and ``HAMMING``. ``BOX`` is the high-performance filter with
|
||||
two times shorter window than ``BILINEAR``. It can be used for image reduction
|
||||
3 and more times and produces a more sharp result than ``BILINEAR``.
|
||||
|
||||
``HAMMING`` filter has the same performance as ``BILINEAR`` filter while
|
||||
providing the image downscaling quality comparable to ``BICUBIC``.
|
||||
Both new filters don't show good quality for the image upscaling.
|
|
@ -6,6 +6,7 @@ Release Notes
|
|||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
||||
3.4.0
|
||||
3.3.0
|
||||
3.2.0
|
||||
3.1.2
|
||||
|
|
Loading…
Reference in New Issue
Block a user