Open In App

Python PIL | Image.transform() method

Last Updated : 02 Aug, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

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:


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads