Python PIL | Image.convert() 方法
PIL 是Python Imaging Library,它为Python解释器提供了图像编辑功能。 Image
模块提供了一个同名的类,用于表示 PIL 图像。该模块还提供了许多工厂函数,包括从文件加载图像和创建新图像的函数。
Image.convert()
返回此图像的转换副本。对于“P”模式,此方法通过调色板转换像素。如果省略模式,则选择一种模式,以便图像和调色板中的所有信息都可以在没有调色板的情况下表示。
Syntax: Image.convert(mode=None, matrix=None, dither=None, palette=0, colors=256)
Parameters:
mode – The requested mode. See: Modes.
matrix – An optional conversion matrix. If given, this should be 4- or 12-tuple containing floating point values.
dither – Dithering method, used when converting from mode “RGB” to “P” or from “RGB” or “L” to “1”. Available methods are NONE or FLOYDSTEINBERG (default).
palette – Palette to use when converting from mode “RGB” to “P”. Available palettes are WEB or ADAPTIVE.
colors – Number of colors to use for the ADAPTIVE palette. Defaults to 256.
Returns: An Image object.
使用的图像:
# 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: