Merge pull request #8735 from radarhere/affine

This commit is contained in:
Hugo van Kemenade 2025-02-06 13:26:24 +02:00 committed by GitHub
commit b57b4e5f2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -48,9 +48,9 @@ class AffineTransform(Transform):
Define an affine image transform. Define an affine image transform.
This function takes a 6-tuple (a, b, c, d, e, f) which contain the first This function takes a 6-tuple (a, b, c, d, e, f) which contain the first
two rows from an affine transform matrix. For each pixel (x, y) in the two rows from the inverse of an affine transform matrix. For each pixel
output image, the new value is taken from a position (a x + b y + c, (x, y) in the output image, the new value is taken from a position (a x +
d x + e y + f) in the input image, rounded to nearest pixel. b y + c, d x + e y + f) in the input image, rounded to nearest pixel.
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.
@ -58,7 +58,7 @@ class AffineTransform(Transform):
See :py:meth:`.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 the inverse of an affine transform matrix.
""" """
method = Image.Transform.AFFINE method = Image.Transform.AFFINE