mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
s/fromstring/frombytes/
This commit is contained in:
parent
02a9ed8f90
commit
b56e1f74f3
|
@ -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
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user