Saturday, September 6, 2025
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

Most Popular

Dominic
32270 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6639 POSTS0 COMMENTS
Nicole Veronica
11804 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11869 POSTS0 COMMENTS
Shaida Kate Naidoo
6753 POSTS0 COMMENTS
Ted Musemwa
7029 POSTS0 COMMENTS
Thapelo Manthata
6705 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS