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


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


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

Image.resize()返回此圖像的調整大小的副本。

用法:  Image.resize(size, resample=0)
參數:

尺寸-請求的尺寸(以像素為單位),為2元組:(寬度,高度)。
重采樣-可選的重采樣濾波器。這可以是PIL.Image.NEAREST(使用最近的鄰居),PIL.Image.BILINEAR(線性插值),PIL.Image.BICUBIC(三次樣條插值)或PIL.Image.LANCZOS(high-quality下采樣濾波器)之一。如果省略,或者圖像的模式為“1”或“P”,則將其設置為PIL.Image.NEAREST。

返回類型:圖像對象。

使用的圖片:

   
# Improting Image class from PIL module  
from PIL import Image  
  
# Opens a image in RGB mode  
im = Image.open(r"C:\Users\System-Pc\Desktop\ybear.jpg")  
  
# Size of the image in pixels (size of orginal image)  
# (This is not mandatory)  
width, height = im.size  
  
# Setting the points for cropped image  
left = 4
top = height / 5
right = 154
bottom = 3 * height / 5
  
# Cropped image of above dimension  
# (It will not change orginal image)  
im1 = im.crop((left, top, right, bottom)) 
newsize = (300, 300) 
im1 = im1.resize(newsize) 
# Shows the image in image viewer  
im1.show() 

輸出:

另一個例子:這裏我們使用不同的newsize值。

# Improting Image class from PIL module  
from PIL import Image  
  
# Opens a image in RGB mode  
im = Image.open(r"C:\Users\System-Pc\Desktop\ybear.jpg")  
  
# Size of the image in pixels (size of orginal image)  
# (This is not mandatory)  
width, height = im.size  
  
# Setting the points for cropped image  
left = 6
top = height / 4
right = 174
bottom = 3 * height / 4
  
# Cropped image of above dimension  
# (It will not change orginal image)  
im1 = im.crop((left, top, right, bottom)) 
newsize = (200, 200) 
im1 = im1.resize(newsize) 
# Shows the image in image viewer  
im1.show() 

輸出:



相關用法


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