Skip to content

Commit

Permalink
Remove protocol from docs
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Feb 19, 2024
1 parent e1c5d57 commit 2698b57
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docs/reference/ImageOps.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,16 @@ only work on L and RGB images.
.. autofunction:: colorize
.. autofunction:: crop
.. autofunction:: scale
.. autofunction:: deform
.. py:function:: deform(image: Image.Image, deformer, resample: int = Image.Resampling.BILINEAR) -> Image.Image
Deform the image.

:param image: The image to deform.
:param deformer: A deformer object. Any object that implements a
``getmesh`` method can be used.
:param resample: An optional resampling filter. Same values possible as
in the PIL.Image.transform function.
:return: An image.
.. autofunction:: equalize
.. autofunction:: expand
.. autofunction:: flip
Expand Down

0 comments on commit 2698b57

Please sign in to comment.