From b56e1f74f3513b87ec2d70da6e3279059a1d6a7f Mon Sep 17 00:00:00 2001 From: wiredfool Date: Mon, 4 Jan 2016 01:46:06 -0800 Subject: [PATCH] s/fromstring/frombytes/ --- docs/handbook/writing-your-own-file-decoder.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/handbook/writing-your-own-file-decoder.rst b/docs/handbook/writing-your-own-file-decoder.rst index 0af4007be..acc80e4ee 100644 --- a/docs/handbook/writing-your-own-file-decoder.rst +++ b/docs/handbook/writing-your-own-file-decoder.rst @@ -124,9 +124,9 @@ The raw decoder The ``raw`` decoder is used to read uncompressed data from an image file. It can be used with most uncompressed file formats, such as PPM, BMP, uncompressed TIFF, and many others. To use the raw decoder with the -:py:func:`PIL.Image.fromstring` function, use the following syntax:: +:py:func:`PIL.Image.frombytes` function, use the following syntax:: - image = Image.fromstring( + image = Image.frombytes( mode, size, data, "raw", raw mode, stride, orientation ) @@ -233,9 +233,9 @@ If the raw decoder cannot handle your format, PIL also provides a special “bit decoder that can be used to read various packed formats into a floating point image memory. -To use the bit decoder with the fromstring function, use the following syntax:: +To use the bit decoder with the frombytes function, use the following syntax:: - image = fromstring( + image = frombytes( mode, size, data, "bit", bits, pad, fill, sign, orientation )