Python PIL | Image.quantize() 方法
PIL 是Python Imaging Library,它为Python解释器提供了图像编辑功能。 Image
模块提供了一个同名的类,用于表示 PIL 图像。该模块还提供了许多工厂函数,包括从文件加载图像和创建新图像的函数。
Image.quantize()
将图像转换为具有指定颜色数量的“P”模式。
Syntax: Image.quantize(colors=256, method=None, kmeans=0, palette=None)
Parameters:
colors – The desired number of colors, <= 256
method – 0 = median cut 1 = maximum coverage 2 = fast octree
kmeans – Integer
palette – Quantize to the PIL.ImagingPalette palette.
Returns type: An Image object.
使用的图像:
# Importing Image module from PIL package
from PIL import Image
import PIL
# creating a image object (main image)
im1 = Image.open(r"C:\Users\System-Pc\Desktop\flower1.jpg")
# quantize a image
im1 = im1.quantize(256)
# to show specified image
im1.show()
输出: