We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21eec5c commit 2d5421fCopy full SHA for 2d5421f
docs/releasenotes/10.1.0.rst
@@ -35,6 +35,17 @@ as a tuple. ::
35
im.getpixel((0, 0))
36
im.getpixel([0, 0])
37
38
+BoxBlur and GaussianBlur allow for different x and y radii
39
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
40
+
41
+py:meth:`~PIL.ImageFilter.BoxBlur` and py:meth:`~PIL.ImageFilter.GaussianBlur`
42
+now allow a sequence of x and y radii to be specified, rather than a single
43
+number for both dimensions. ::
44
45
+ from PIL import ImageFilter
46
+ ImageFilter.BoxBlur((2, 5))
47
+ ImageFilter.GaussianBlur((2, 5))
48
49
API Additions
50
=============
51
0 commit comments