Python PIL | Image.thumbnail() 方法
PIL 是Python Imaging Library,它为Python解释器提供了图像编辑功能。 Image
模块提供了一个同名的类,用于表示 PIL 图像。该模块还提供了许多工厂函数,包括从文件加载图像和创建新图像的函数。
Image.thumbnail()
将此图像制作成缩略图。此方法修改图像以包含其自身的缩略图版本,不大于给定大小。此方法计算适当的缩略图大小以保留图像的方面,调用draft()
方法来配置文件阅读器(如果适用),最后调整图像大小。
请注意,此函数会修改 Image 对象。如果您还需要使用全分辨率图像,请将此方法应用于原始图像的copy()
。
Syntax: Image.thumbnail(size, resample=3)
Parameters:
size – Requested size.
resample – Optional resampling filter.
Returns Type: An Image object.
使用的图像:
# 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()
输出: