Corrected alpha_composite args documentation

This commit is contained in:
Andrew Murray 2017-07-16 17:37:51 +10:00 committed by wiredfool
parent bbde1fe682
commit 619d706eba

View File

@ -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.
"""