From 60f44c83df4b8697116129c3e0a45f36f1cb90bd Mon Sep 17 00:00:00 2001 From: Alexander Date: Fri, 15 Sep 2017 00:55:19 +0300 Subject: [PATCH] Add to release notes --- docs/releasenotes/4.3.0.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/releasenotes/4.3.0.rst b/docs/releasenotes/4.3.0.rst index 4708eeb29..6e3a40176 100644 --- a/docs/releasenotes/4.3.0.rst +++ b/docs/releasenotes/4.3.0.rst @@ -4,13 +4,19 @@ Get One Channel From Image ========================== -New method :py:meth:`PIL.Image.Image.getchannel` added. +New method :py:meth:`PIL.Image.Image.getchannel` is added. It returns single channel by index or name. For example, ``image.getchannel("A")`` will return alpha channel as separate image. ``getchannel`` should work up to 6 times faster than ``image.split()[0]`` in previous Pillow versions. +Box Blur +======== + +New filter :py:class:`PIL.ImageFilter.BoxBlur` is added. + + Partial Resampling ==================