PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。的Image
模块提供了一个具有相同名称的类,用于表示PIL图像。该模块还提供了许多出厂函数,包括从文件加载图像和创建新图像的函数。
Image.draft()
配置图像文件加载器,使其返回与给定模式和大小尽可能匹配的图像版本。例如,您可以使用此方法在加载彩色JPEG时将其转换为灰度,或从PCD文件中提取128×192版本。
用法: Image.draft(mode, size)
参数:
mode-请求的模式。
size-要求的尺寸。
返回:Image对象。
返回类型:图片
使用的图片:
# importing image object from PIL
from PIL import Image
# creating an image object
im = Image.open(r"C:\Users\System-Pc\Desktop\rose.jpg")
# print the original image object
print(im)
# using draft function
# convert mode and size as well
im1 = im.draft("L", (im.width // 2, im.height // 2))
im2 = im1.decoderconfig, im1.mode, im.size, im1.tile
print(im1)
print(im2)
# show the converted image
im1.show()
输出1:
PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=217x232 at 0x27A3D65FD68 PIL.JpegImagePlugin.JpegImageFile image mode=L size=109x116 at 0x27A3D65FD68 ((2, 0), 'L', (109, 116), [('jpeg', (0, 0, 109, 116), 0, ('L', ''))])
输出2:
另一个示例:在这里,我们使用另一个图像。
使用的图片:
# importing image object from PIL
from PIL import Image
# creating an image object
im = Image.open(r"C:\Users\System-Pc\Desktop\tree.jpg")
# print the original image object
print(im)
# using draft function
# convert mode and size as well
im1 = im.draft("L", (im.width // 2, im.height // 2))
im2 = im1.decoderconfig, im1.mode, im.size, im1.tile
print(im1)
print(im2)
# show the converted image
im1.show()
输出1:
PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=259x194 at 0x28A1C2C1CC0 PIL.JpegImagePlugin.JpegImageFile image mode=L size=130x97 at 0x28A1C2C1CC0 ((2, 0), 'L', (130, 97), [('jpeg', (0, 0, 130, 97), 0, ('L', ''))])
输出2:
相关用法
- 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.draft() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。