Open In App

Python PIL | ImageChops.duplicate()

Improve
Improve
Like Article
Like
Save
Share
Report

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:


Last Updated : 14 Jul, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads