mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 18:06:18 +03:00
Merge pull request #6415 from radarhere/doc
This commit is contained in:
commit
b0185e4e48
|
@ -141,6 +141,10 @@ The fields are used as follows:
|
||||||
uncompressed data, in a variety of pixel formats. For more information on
|
uncompressed data, in a variety of pixel formats. For more information on
|
||||||
this decoder, see the description below.
|
this decoder, see the description below.
|
||||||
|
|
||||||
|
A list of C decoders can be seen under codecs section of the function array
|
||||||
|
in :file:`_imaging.c`. Python decoders are registered within the relevant
|
||||||
|
plugins.
|
||||||
|
|
||||||
**region**
|
**region**
|
||||||
A 4-tuple specifying where to store data in the image.
|
A 4-tuple specifying where to store data in the image.
|
||||||
|
|
||||||
|
|
|
@ -715,6 +715,11 @@ class Image:
|
||||||
|
|
||||||
:param encoder_name: What encoder to use. The default is to
|
:param encoder_name: What encoder to use. The default is to
|
||||||
use the standard "raw" encoder.
|
use the standard "raw" encoder.
|
||||||
|
|
||||||
|
A list of C encoders can be seen under
|
||||||
|
codecs section of the function array in
|
||||||
|
:file:`_imaging.c`. Python encoders are
|
||||||
|
registered within the relevant plugins.
|
||||||
:param args: Extra arguments to the encoder.
|
:param args: Extra arguments to the encoder.
|
||||||
:returns: A :py:class:`bytes` object.
|
:returns: A :py:class:`bytes` object.
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user