Python PIL Image.thumbnail() 方法
PIL是Python图像库,它为Python解释器提供了图像编辑功能。图像模块提供了一个同名的类,用来表示一个PIL图像。该模块还提供了一些工厂函数,包括从文件加载图像和创建新图像的函数。
Image.thumbnail() 将此图像变成一个缩略图。该方法将图像修改为包含一个自身的缩略图版本,不大于给定的尺寸。这个方法计算出一个合适的缩略图尺寸,以保留图像的外观,调用draft()方法来配置文件阅读器(如适用),最后调整图像的大小。
请注意,这个函数在原地修改了图像对象。如果你也需要使用全分辨率的图像,请将此方法应用于原始图像的副本()。
语法: Image.thumbnail(size, resample=3)
参数:
size – 要求的尺寸。
resample – 可选的重采样过滤器。
返回类型:一个图像对象。
使用的图片:
# importing Image class from PIL package
from PIL import Image
# creating a object
image = Image.open(r"C:\Users\System-Pc\Desktop\python.png")
MAX_SIZE = (100, 100)
image.thumbnail(MAX_SIZE)
# creating thumbnail
image.save('pythonthumb.png')
image.show()
输出:
另一个例子:这里使用了另一个图像。
使用的图片:
# importing Image class from PIL package
from PIL import Image
# creating a object
image = Image.open(r"C:\Users\System-Pc\Desktop\house.jpg")
MAX_SIZE = (500, 500)
image.thumbnail(MAX_SIZE)
# creating thumbnail
image.save('pythonthumb2.jpg')
image.show()
输出: