From 74a80346446e366daa0342df092a02776e8121dc Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Tue, 24 Dec 2019 14:50:53 +1100 Subject: [PATCH] Updated draft documentation [ci skip] --- src/PIL/Image.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/PIL/Image.py b/src/PIL/Image.py index b36f64735..770dc3c93 100644 --- a/src/PIL/Image.py +++ b/src/PIL/Image.py @@ -1127,15 +1127,14 @@ class Image: Configures the image file loader so it returns a version of the image that as closely as possible matches the given mode and size. For example, you can use this method to convert a color - JPEG to greyscale while loading it, or to extract a 128x192 - version from a PCD file. + JPEG to greyscale while loading it. Note that this method modifies the :py:class:`~PIL.Image.Image` object in place. If the image has already been loaded, this method has no effect. Note: This method is not implemented for most images. It is - currently implemented only for JPEG and PCD images. + currently implemented only for JPEG and MPO images. :param mode: The requested mode. :param size: The requested size.