當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python PIL Image.transform()用法及代碼示例


PIL是Python Imaging Library,它為python解釋器提供了圖像編輯函數。的Image模塊提供了一個具有相同名稱的類,用於表示PIL圖像。該模塊還提供了許多出廠函數,包括從文件加載圖像和創建新圖像的函數。

Image.transform()變換此圖像。此方法創建具有給定大小和與原始模式相同模式的新圖像,並使用給定的變換將數據複製到新圖像。

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

參數:
size-輸出大小。
method-轉換方法。
data-轉換方法的額外數據。
resample-可選的重采樣過濾器。

返回:Image對象。

使用的圖片:

   
# 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()

輸出:



相關用法


注:本文由純淨天空篩選整理自Sunitamamgai大神的英文原創作品 Python PIL | Image.transform() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。