mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-13 13:16:52 +03:00
Merge pull request #2627 from radarhere/alpha_composite
Corrected alpha_composite args documentation
This commit is contained in:
commit
730cf93c32
|
@ -1381,11 +1381,11 @@ class Image(object):
|
|||
onto this image.
|
||||
|
||||
:param im: image to composite over this one
|
||||
:param dest: Optional 2 tuple (top, left) specifying the upper
|
||||
:param dest: Optional 2 tuple (left, top) specifying the upper
|
||||
left corner in this (destination) image.
|
||||
:param source: Optional 2 (top, left) tuple for the upper left
|
||||
corner in the overlay source image, or 4 tuple (top, left, bottom,
|
||||
right) for the bounds of the source rectangle
|
||||
:param source: Optional 2 (left, top) tuple for the upper left
|
||||
corner in the overlay source image, or 4 tuple (left, top, right,
|
||||
bottom) for the bounds of the source rectangle
|
||||
|
||||
Performance Note: Not currently implemented in-place in the core layer.
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue
Block a user