Python PIL | Image.transform () метод

Опубликовано: 2 Апреля, 2022

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:UsersSystem-PcDesktop ree.jpg")
  
# using image transform method
img1 = img.transform((300, 300), Image.EXTENT, 
       data =[10, 0, 10 + img.width // 4, img.height // 3 ])
  
img1.show()

Выход:

Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.

Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.