Friday, September 5, 2025
HomeLanguagesPython | Copy and Paste Images onto other Image using Pillow

Python | Copy and Paste Images onto other Image using Pillow

In this article, we will learn how to copy an image over another image using pillow library. We will use image module from pillow and copy() and paste() methods to achieve this task. 
We will need to create copies of both images so that it does not affect the original image with the help of copy() method and then paste the image on the other image with the help of paste() method.
Input images – 
Image1: 

 
Image2: 
 

Example 1: 
 

Python3




# import image module from pillow
from PIL import Image
 
# open the image
Image1 = Image.open('D:\cat.jpg')
 
# make a copy the image so that the
# original image does not get affected
Image1copy = Image1.copy()
Image2 = Image.open('D:\core.jpg')
Image2copy = Image2.copy()
 
# paste image giving dimensions
Image1copy.paste(Image2copy, (0, 0))
 
# save the image
Image1copy.save('D:\pasted2.png')


Output: 
 

Example 2: Changing parameters to place the Image2 on face of the cat in the Image1.
 

Python3




# import image module from pillow
from PIL import Image
 
# open the image
Image1 = Image.open('D:\cat.jpg')
 
# make a copy the image so that
# the original image does not get affected
Image1copy = Image1.copy()
Image2 = Image.open('D:\core.jpg')
Image2copy = Image2.copy()
 
# paste image giving dimensions
Image1copy.paste(Image2copy, (70, 150))
 
# save the image
Image1copy.save('D:\pasted2.png')


Output: 
 

 

RELATED ARTICLES

Most Popular

Dominic
32265 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11864 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6703 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS