Pillow/docs/reference/ImageChops.rst

50 lines
1.9 KiB
ReStructuredText
Raw Normal View History

2013-10-12 09:45:09 +04:00
.. py:module:: PIL.ImageChops
.. py:currentmodule:: PIL.ImageChops
2013-10-14 09:09:02 +04:00
:py:mod:`ImageChops` ("Channel Operations") Module
==================================================
2013-10-12 09:45:09 +04:00
The :py:mod:`ImageChops` module contains a number of arithmetical image
operations, called channel operations (“chops”). These can be used for various
purposes, including special effects, image compositions, algorithmic painting,
and more.
For more pre-made operations, see :py:mod:`ImageOps`.
At this time, most channel operations are only implemented for 8-bit images
(e.g. “L” and “RGB”).
Functions
---------
Most channel operations take one or two image arguments and returns a new
image. Unless otherwise noted, the result of a channel operation is always
clipped to the range 0 to MAX (which is 255 for all modes supported by the
operations in this module).
.. autofunction:: PIL.ImageChops.add
.. autofunction:: PIL.ImageChops.add_modulo
.. autofunction:: PIL.ImageChops.blend
.. autofunction:: PIL.ImageChops.composite
.. autofunction:: PIL.ImageChops.constant
.. autofunction:: PIL.ImageChops.darker
.. autofunction:: PIL.ImageChops.difference
.. autofunction:: PIL.ImageChops.duplicate
.. autofunction:: PIL.ImageChops.invert
.. autofunction:: PIL.ImageChops.lighter
.. autofunction:: PIL.ImageChops.logical_and
.. autofunction:: PIL.ImageChops.logical_or
2019-01-01 06:11:52 +03:00
.. autofunction:: PIL.ImageChops.logical_xor
2013-10-12 09:45:09 +04:00
.. autofunction:: PIL.ImageChops.multiply
2019-11-22 16:09:41 +03:00
.. autofunction:: PIL.ImageChops.softlight
.. autofunction:: PIL.ImageChops.hardlight
2017-12-30 13:23:04 +03:00
.. py:method:: PIL.ImageChops.offset(image, xoffset, yoffset=None)
Returns a copy of the image where data has been offset by the given
distances. Data wraps around the edges. If **yoffset** is omitted, it
is assumed to be equal to **xoffset**.
2013-10-12 09:45:09 +04:00
.. autofunction:: PIL.ImageChops.screen
.. autofunction:: PIL.ImageChops.subtract
.. autofunction:: PIL.ImageChops.subtract_modulo