mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
improve ImageTransform documentation
This commit is contained in:
parent
ded2c8b1d1
commit
fc7088a561
|
@ -77,14 +77,6 @@ can be found here.
|
||||||
:undoc-members:
|
:undoc-members:
|
||||||
:show-inheritance:
|
:show-inheritance:
|
||||||
|
|
||||||
:mod:`~PIL.ImageTransform` Module
|
|
||||||
---------------------------------
|
|
||||||
|
|
||||||
.. automodule:: PIL.ImageTransform
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
:show-inheritance:
|
|
||||||
|
|
||||||
:mod:`~PIL.PaletteFile` Module
|
:mod:`~PIL.PaletteFile` Module
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
|
|
35
docs/reference/ImageTransform.rst
Normal file
35
docs/reference/ImageTransform.rst
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
|
||||||
|
.. py:module:: PIL.ImageTransform
|
||||||
|
.. py:currentmodule:: PIL.ImageTransform
|
||||||
|
|
||||||
|
:py:mod:`~PIL.ImageTransform` Module
|
||||||
|
====================================
|
||||||
|
|
||||||
|
The :py:mod:`~PIL.ImageTransform` module contains implementations of
|
||||||
|
:py:class:`~PIL.Image.ImageTransformHandler` for some of the builtin
|
||||||
|
:py:class:`.Image.Transform` methods.
|
||||||
|
|
||||||
|
.. autoclass:: Transform
|
||||||
|
:members:
|
||||||
|
:undoc-members:
|
||||||
|
:show-inheritance:
|
||||||
|
|
||||||
|
.. autoclass:: AffineTransform
|
||||||
|
:members:
|
||||||
|
:undoc-members:
|
||||||
|
:show-inheritance:
|
||||||
|
|
||||||
|
.. autoclass:: ExtentTransform
|
||||||
|
:members:
|
||||||
|
:undoc-members:
|
||||||
|
:show-inheritance:
|
||||||
|
|
||||||
|
.. autoclass:: QuadTransform
|
||||||
|
:members:
|
||||||
|
:undoc-members:
|
||||||
|
:show-inheritance:
|
||||||
|
|
||||||
|
.. autoclass:: MeshTransform
|
||||||
|
:members:
|
||||||
|
:undoc-members:
|
||||||
|
:show-inheritance:
|
|
@ -25,6 +25,7 @@ Reference
|
||||||
ImageShow
|
ImageShow
|
||||||
ImageStat
|
ImageStat
|
||||||
ImageTk
|
ImageTk
|
||||||
|
ImageTransform
|
||||||
ImageWin
|
ImageWin
|
||||||
ExifTags
|
ExifTags
|
||||||
TiffTags
|
TiffTags
|
||||||
|
|
|
@ -2666,6 +2666,10 @@ class Image:
|
||||||
def transform(self, size, data, resample, fill=1):
|
def transform(self, size, data, resample, fill=1):
|
||||||
# Return result
|
# Return result
|
||||||
|
|
||||||
|
Implementations of :py:class:`~PIL.Image.ImageTransformHandler`
|
||||||
|
for some of the :py:class:`Transform` methods are provided
|
||||||
|
in :py:mod:`~PIL.ImageTransform`.
|
||||||
|
|
||||||
It may also be an object with a ``method.getdata`` method
|
It may also be an object with a ``method.getdata`` method
|
||||||
that returns a tuple supplying new ``method`` and ``data`` values::
|
that returns a tuple supplying new ``method`` and ``data`` values::
|
||||||
|
|
||||||
|
|
|
@ -20,12 +20,14 @@ from . import Image
|
||||||
|
|
||||||
|
|
||||||
class Transform(Image.ImageTransformHandler):
|
class Transform(Image.ImageTransformHandler):
|
||||||
|
"""Base class for other transforms defined in :py:mod:`~PIL.ImageTransform`."""
|
||||||
|
|
||||||
method: Image.Transform
|
method: Image.Transform
|
||||||
|
|
||||||
def __init__(self, data: Sequence[int]) -> None:
|
def __init__(self, data: Sequence[int]) -> None:
|
||||||
self.data = data
|
self.data = data
|
||||||
|
|
||||||
def getdata(self) -> tuple[int, Sequence[int]]:
|
def getdata(self) -> tuple[Image.Transform, Sequence[int]]:
|
||||||
return self.method, self.data
|
return self.method, self.data
|
||||||
|
|
||||||
def transform(
|
def transform(
|
||||||
|
@ -34,6 +36,7 @@ class Transform(Image.ImageTransformHandler):
|
||||||
image: Image.Image,
|
image: Image.Image,
|
||||||
**options: dict[str, str | int | tuple[int, ...] | list[int]],
|
**options: dict[str, str | int | tuple[int, ...] | list[int]],
|
||||||
) -> Image.Image:
|
) -> Image.Image:
|
||||||
|
"""Perform the transform. Called from :py:meth:`.Image.transform`."""
|
||||||
# can be overridden
|
# can be overridden
|
||||||
method, data = self.getdata()
|
method, data = self.getdata()
|
||||||
return image.transform(size, method, data, **options)
|
return image.transform(size, method, data, **options)
|
||||||
|
@ -51,7 +54,7 @@ class AffineTransform(Transform):
|
||||||
This function can be used to scale, translate, rotate, and shear the
|
This function can be used to scale, translate, rotate, and shear the
|
||||||
original image.
|
original image.
|
||||||
|
|
||||||
See :py:meth:`~PIL.Image.Image.transform`
|
See :py:meth:`.Image.transform`
|
||||||
|
|
||||||
:param matrix: A 6-tuple (a, b, c, d, e, f) containing the first two rows
|
:param matrix: A 6-tuple (a, b, c, d, e, f) containing the first two rows
|
||||||
from an affine transform matrix.
|
from an affine transform matrix.
|
||||||
|
@ -73,7 +76,7 @@ class ExtentTransform(Transform):
|
||||||
rectangle in the current image. It is slightly slower than crop, but about
|
rectangle in the current image. It is slightly slower than crop, but about
|
||||||
as fast as a corresponding resize operation.
|
as fast as a corresponding resize operation.
|
||||||
|
|
||||||
See :py:meth:`~PIL.Image.Image.transform`
|
See :py:meth:`.Image.transform`
|
||||||
|
|
||||||
:param bbox: A 4-tuple (x0, y0, x1, y1) which specifies two points in the
|
:param bbox: A 4-tuple (x0, y0, x1, y1) which specifies two points in the
|
||||||
input image's coordinate system. See :ref:`coordinate-system`.
|
input image's coordinate system. See :ref:`coordinate-system`.
|
||||||
|
@ -89,7 +92,7 @@ class QuadTransform(Transform):
|
||||||
Maps a quadrilateral (a region defined by four corners) from the image to a
|
Maps a quadrilateral (a region defined by four corners) from the image to a
|
||||||
rectangle of the given size.
|
rectangle of the given size.
|
||||||
|
|
||||||
See :py:meth:`~PIL.Image.Image.transform`
|
See :py:meth:`.Image.transform`
|
||||||
|
|
||||||
:param xy: An 8-tuple (x0, y0, x1, y1, x2, y2, x3, y3) which contain the
|
:param xy: An 8-tuple (x0, y0, x1, y1, x2, y2, x3, y3) which contain the
|
||||||
upper left, lower left, lower right, and upper right corner of the
|
upper left, lower left, lower right, and upper right corner of the
|
||||||
|
@ -104,7 +107,7 @@ class MeshTransform(Transform):
|
||||||
Define a mesh image transform. A mesh transform consists of one or more
|
Define a mesh image transform. A mesh transform consists of one or more
|
||||||
individual quad transforms.
|
individual quad transforms.
|
||||||
|
|
||||||
See :py:meth:`~PIL.Image.Image.transform`
|
See :py:meth:`.Image.transform`
|
||||||
|
|
||||||
:param data: A list of (bbox, quad) tuples.
|
:param data: A list of (bbox, quad) tuples.
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user