PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。的Image
模块提供了一个具有相同名称的类,用于表示PIL图像。该模块还提供了许多出厂函数,包括从文件加载图像和创建新图像的函数。
Image.thumbnail()
将此图像制作为缩略图。此方法将图像修改为包含其自身的缩略图版本,但不大于给定的大小。此方法计算适当的缩略图大小以保留图像的外观,draft()
配置文件阅读器(如果适用)并最终调整图像大小的方法。
请注意,此函数会在适当位置修改Image对象。如果您还需要使用全分辨率图像,请将此方法应用于copy()
原始图像。
用法: Image.thumbnail(size, resample=3)
参数:
size-要求的尺寸。
resample-可选的重采样过滤器。
返回类型:Image对象。
使用的图片:
# 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()
输出:
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python Decimal max()用法及代码示例
- Python PIL ImageOps.fit()用法及代码示例
- Python os.rmdir()用法及代码示例
- Python sympy.det()用法及代码示例
- Python Decimal min()用法及代码示例
- Python os.readlink()用法及代码示例
- Python os.writev()用法及代码示例
- Python os.readv()用法及代码示例
- Python PIL RankFilter()用法及代码示例
- Python os.rename()用法及代码示例
- Python os.sendfile()用法及代码示例
注:本文由纯净天空筛选整理自Sunitamamgai大神的英文原创作品 Python PIL | Image.thumbnail() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。