Python PIL Image.resize()方法
PIL是Python图像库,它为Python解释器提供了图像编辑功能。图像模块提供了一个同名的类,用来表示一个PIL图像。该模块还提供了一些工厂函数,包括从文件加载图像和创建新图像的函数。
Image.resize() 返回该图像的一个调整后的副本。
语法: Image.resize(size, resample=0)
参数 :
size – 请求的尺寸,以像素为单位,是一个2元组:(宽度,高度)。
resample – 一个可选的重采样过滤器。这可以是PIL.Image.NEAREST(使用最近的邻居)、PIL.Image.BILINEAR(线性插值)、PIL.Image.BICUBIC(三次样条插值)或PIL.Image.LANCZOS(一个高质量的下采样过滤器)中的一个。如果省略,或者图像有模式 “1 “或 “P”,则设置为PIL.Image.NEAREST。
返回类型 :一个图像对象。
使用的图片:
# Importing 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 original 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 original image)
im1 = im.crop((left, top, right, bottom))
newsize = (300, 300)
im1 = im1.resize(newsize)
# Shows the image in image viewer
im1.show()
输出:
另一个例子:这里我们使用不同的newsize值。
# Importing 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 original 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 original image)
im1 = im.crop((left, top, right, bottom))
newsize = (200, 200)
im1 = im1.resize(newsize)
# Shows the image in image viewer
im1.show()
输出: