Saturday, June 20, 2026
HomeLanguagesPython PIL | Image.transform() method

Python PIL | Image.transform() method

PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. The Image module provides a class with the same name which is used to represent a PIL image. The module also provides a number of factory functions, including functions to load images from files, and to create new images.

Image.transform() Transforms this image. This method creates a new image with the given size, and the same mode as the original, and copies data to the new image using the given transform.

Syntax: Image.transform(size, method, data=None, resample=0, fill=1)

Parameters:
size – The output size.
method – The transformation method.
data – Extra data to the transformation method.
resample – Optional resampling filter.

Returns: An Image object.

Image Used:




   
# importing Image module from PIL package 
from PIL import Image
  
# creating image object
img = Image.open(r"C:\Users\System-Pc\Desktop\tree.jpg")
  
# using image transform method
img1 = img.transform((300, 300), Image.EXTENT, 
       data =[10, 0, 10 + img.width // 4, img.height // 3 ])
  
img1.show()


Output:

RELATED ARTICLES

4 COMMENTS

Most Popular

Dominic
32516 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6899 POSTS0 COMMENTS
Nicole Veronica
12014 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12110 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6965 POSTS0 COMMENTS