Skip to content

Commit b5abcb9

Browse files
committed
Add new operators to FILTER_TYPES - Fixes issue #684
1 parent eeb20fa commit b5abcb9

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

docs/changes.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ Version 0.7.1
1515
Unreleased.
1616

1717
- Updated accepted animation formats for :attr:`Image.animation <wand.image.Image.animation>` property. [:issue:`682`]
18+
- Added new :const:`FILTER_TYPES <wand.image.FILTER_TYPES>` operators. [:issue:`684`]
19+
20+
- ``'lanczosradius'``
21+
- ``'cubicspline'``
22+
- ``'magickernelsharp2013'``
23+
- ``'magickernelsharp2021'``
1824

1925

2026
.. _changelog-0.7.0:

wand/image.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,6 +602,10 @@
602602
#: - ``'cosine'``
603603
#: - ``'spline'``
604604
#: - ``'sentinel'``
605+
#: - ``'lanczosradius'``
606+
#: - ``'cubicspline'``
607+
#: - ``'magickernelsharp2013'``
608+
#: - ``'magickernelsharp2021'``
605609
#:
606610
#: .. seealso::
607611
#:
@@ -615,7 +619,9 @@
615619
'catrom', 'mitchell', 'jinc', 'sinc', 'sincfast', 'kaiser',
616620
'welsh', 'parzen', 'bohman', 'bartlett', 'lagrange', 'lanczos',
617621
'lanczossharp', 'lanczos2', 'lanczos2sharp', 'robidoux',
618-
'robidouxsharp', 'cosine', 'spline', 'sentinel')
622+
'robidouxsharp', 'cosine', 'spline', 'lanczosradius',
623+
'cubicspline', 'magickernelsharp2013', 'magickernelsharp2021',
624+
'sentinel')
619625

620626

621627
#: (:class:`tuple`) The list of :attr:`Image.function <BaseImage.function>`

0 commit comments

Comments
 (0)