From c3e0a685bebadacb025d7fd0cc441e1f5287da6a Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sun, 28 Feb 2016 23:29:12 +1100 Subject: [PATCH] Corrected documentation [ci skip] --- docs/handbook/tutorial.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/handbook/tutorial.rst b/docs/handbook/tutorial.rst index d8587eb8d..914f7cde8 100644 --- a/docs/handbook/tutorial.rst +++ b/docs/handbook/tutorial.rst @@ -247,8 +247,9 @@ Transposing an image out = im.transpose(Image.ROTATE_180) out = im.transpose(Image.ROTATE_270) -There’s no difference in performance or result between ``transpose(ROTATE)`` -and corresponding :py:meth:`~PIL.Image.Image.rotate` operations. +``transpose(ROTATE)`` operations can also be performed identically with +:py:meth:`~PIL.Image.Image.rotate` operations, provided the `expand` flag is +true, to provide for the same changes to the image's size. A more general form of image transformations can be carried out via the :py:meth:`~PIL.Image.Image.transform` method.