Python PIL | ImageChops.duplicate()
PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. The ImageChops.duplicate() 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.
PIL.ImageChops.duplicate()
Copy a channel. Alias for PIL.Image.Image.copy()
.The duplicate() simply copy/duplicate the image.
Syntax: PIL.ImageChops.duplicate(image)
Parameters:
image1 – image.Return Type: An image.
Image Used:
## Importing Image and ImageChops module from PIL package from PIL import Image, ImageChops # creating a image1 object im1 = Image. open (r "C:\Users\System-Pc\Desktop\leave.jpg" ) # applying duplicate method im3 = ImageChops.duplicate(im1) im3.show() |
Output:
Please Login to comment...