mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
release notes
autodocs fix docstring note for `Image.split`
This commit is contained in:
parent
1a7cb317be
commit
b46b5c4e84
|
@ -1947,6 +1947,9 @@ class Image(object):
|
||||||
containing a copy of one of the original bands (red, green,
|
containing a copy of one of the original bands (red, green,
|
||||||
blue).
|
blue).
|
||||||
|
|
||||||
|
If you need only one band, :py:meth:`~PIL.Image.Image.getchannel`
|
||||||
|
method can be more convinient and faster.
|
||||||
|
|
||||||
:returns: A tuple containing bands.
|
:returns: A tuple containing bands.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -1964,9 +1967,11 @@ class Image(object):
|
||||||
Returns an image contained single channel of the source image.
|
Returns an image contained single channel of the source image.
|
||||||
|
|
||||||
:param channel: What channel to return. Could be index
|
:param channel: What channel to return. Could be index
|
||||||
(0 for "R" channel of "RGB") or channel name
|
(0 for "R" channel of "RGB") or channel name
|
||||||
("A" for alpha channel of "RGBA").
|
("A" for alpha channel of "RGBA").
|
||||||
:returns: An image in "L" mode.
|
:returns: An image in "L" mode.
|
||||||
|
|
||||||
|
.. versionadded:: 4.3.0
|
||||||
"""
|
"""
|
||||||
self.load()
|
self.load()
|
||||||
|
|
||||||
|
|
|
@ -146,6 +146,7 @@ ITU-R 709, using the D65 luminant) to the CIE XYZ color space:
|
||||||
.. automethod:: PIL.Image.Image.seek
|
.. automethod:: PIL.Image.Image.seek
|
||||||
.. automethod:: PIL.Image.Image.show
|
.. automethod:: PIL.Image.Image.show
|
||||||
.. automethod:: PIL.Image.Image.split
|
.. automethod:: PIL.Image.Image.split
|
||||||
|
.. automethod:: PIL.Image.Image.getchannel
|
||||||
.. automethod:: PIL.Image.Image.tell
|
.. automethod:: PIL.Image.Image.tell
|
||||||
.. automethod:: PIL.Image.Image.thumbnail
|
.. automethod:: PIL.Image.Image.thumbnail
|
||||||
.. automethod:: PIL.Image.Image.tobitmap
|
.. automethod:: PIL.Image.Image.tobitmap
|
||||||
|
|
9
docs/releasenotes/4.3.0.rst
Normal file
9
docs/releasenotes/4.3.0.rst
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
4.3.0
|
||||||
|
-----
|
||||||
|
|
||||||
|
Get One Channel From Image
|
||||||
|
============================
|
||||||
|
|
||||||
|
New method :py:meth:`PIL.Image.Image.getchannel` added.
|
||||||
|
It returns single channel by index or name. For example,
|
||||||
|
``image.getchannel("A")`` will return alpha channel as seperate image.
|
|
@ -6,6 +6,7 @@ Release Notes
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
|
||||||
|
4.3.0
|
||||||
4.2.1
|
4.2.1
|
||||||
4.2.0
|
4.2.0
|
||||||
4.1.1
|
4.1.1
|
||||||
|
@ -21,5 +22,3 @@ Release Notes
|
||||||
3.0.0
|
3.0.0
|
||||||
2.8.0
|
2.8.0
|
||||||
2.7.0
|
2.7.0
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user