⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.133
Server IP:
185.119.109.197
Server:
Linux managedhosting.chostar.me 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
python3
/
dist-packages
/
PIL
/
__pycache__
/
View File Name :
ImageChops.cpython-310.pyc
o Z#a @ s d dl mZ dd Zdd Zdd Zdd Zd d Zdd Zdd Zdd Z dd Z dd Zdd Zd/ddZ d/ddZdd Zd d! Zd"d# Zd$d% Zd&d' Zd(d) Zd*d+ Zd0d-d.Zd,S )1 )Imagec C s t d| j|S )zVFill a channel with a given grey level. :rtype: :py:class:`~PIL.Image.Image` L)r newsize)imagevalue r 0/usr/lib/python3/dist-packages/PIL/ImageChops.pyconstant s r c C s | S )ziCopy a channel. Alias for :py:meth:`PIL.Image.Image.copy`. :rtype: :py:class:`~PIL.Image.Image` )copyr r r r duplicate s r c C s | | | j S )z Invert an image (channel). .. code-block:: python out = MAX - image :rtype: :py:class:`~PIL.Image.Image` )load_newimchop_invertr r r r invert' s r c C $ | | | | j|jS )z Compares the two images, pixel by pixel, and returns a new image containing the lighter values. .. code-block:: python out = max(image1, image2) :rtype: :py:class:`~PIL.Image.Image` )r r r chop_lighterimage1image2r r r lighter6 r c C r )z Compares the two images, pixel by pixel, and returns a new image containing the darker values. .. code-block:: python out = min(image1, image2) :rtype: :py:class:`~PIL.Image.Image` )r r r chop_darkerr r r r darkerG r r c C r )z Returns the absolute value of the pixel-by-pixel difference between the two images. .. code-block:: python out = abs(image1 - image2) :rtype: :py:class:`~PIL.Image.Image` )r r r chop_differencer r r r differenceX r r c C r )a6 Superimposes two images on top of each other. If you multiply an image with a solid black image, the result is black. If you multiply with a solid white image, the image is unaffected. .. code-block:: python out = image1 * image2 / MAX :rtype: :py:class:`~PIL.Image.Image` )r r r chop_multiplyr r r r multiplyi s r c C r )z Superimposes two inverted images on top of each other. .. code-block:: python out = MAX - ((MAX - image1) * (MAX - image2) / MAX) :rtype: :py:class:`~PIL.Image.Image` )r r r chop_screenr r r r screen| s r! c C r )z Superimposes two images on top of each other using the Soft Light algorithm :rtype: :py:class:`~PIL.Image.Image` )r r r chop_soft_lightr r r r soft_light r# c C r )z Superimposes two images on top of each other using the Hard Light algorithm :rtype: :py:class:`~PIL.Image.Image` )r r r chop_hard_lightr r r r hard_light r$ r&