Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Python PIL | ImageChops.duplicate()

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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:

My Personal Notes arrow_drop_up
Last Updated : 14 Jul, 2019
Like Article
Save Article
Similar Reads
Related Tutorials