PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。的Image
模块提供了一个具有相同名称的类,用于表示PIL图像。该模块还提供了许多出厂函数,包括从文件加载图像和创建新图像的函数。
Image.convert()
返回此图像的转换后的副本。对于“P”模式,此方法可通过调色板转换像素。如果省略模式,则选择一种模式,以便无需调色板即可表示图像和调色板中的所有信息。
用法: Image.convert(mode=None, matrix=None, dither=None, palette=0, colors=256)
参数:
mode-请求的模式。请参阅:模式。
matrix-可选的转换矩阵。如果给定,则该值应为包含浮点值的4或12元组。
dither-抖动方法,从模式“RGB”转换为“P”或从“RGB”或“L”转换为“1”时使用。可用的方法为NONE或FLOYDSTEINBERG(默认)。
palette-从模式“RGB”转换为“P”时使用的调色板。可用的调色板是WEB或ADAPTIVE。
colors-用于“自适应”调色板的颜色数。默认值为256。
返回:Image对象。
使用的图片:
# importing image class from PIL package
from PIL import Image
# creating image object
img = Image.open(r"C:\Users\System-Pc\Desktop\scene3.jpg")
# using convert method for img1
img1 = img.convert("L")
img1.show()
# using convert method for img2
img2 = img.convert("1")
img2.show()
输出1:
输出2:
另一个示例:拍摄另一个图像。
使用的图片:
# importing image class from PIL package
from PIL import Image
# creating image object
img = Image.open(r"C:\Users\System-Pc\Desktop\scene4.jpg")
# using convert method for img1
img1 = img.convert("L")
img1.show()
# using convert method for img2
img2 = img.convert("1")
img2.show()
输出1:
输出2:
相关用法
- Python os.dup()用法及代码示例
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python object()用法及代码示例
- Python bytes()用法及代码示例
- Python os.times()用法及代码示例
- Python os.chmod用法及代码示例
- Python hash()用法及代码示例
- Python os.ftruncate()用法及代码示例
- Python os.truncate()用法及代码示例
- Python os.fsdecode()用法及代码示例
- Python dict pop()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
注:本文由纯净天空筛选整理自Sunitamamgai大神的英文原创作品 Python PIL | Image.convert() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。