Python PIL Image.quantize()方法
PIL是Python图像库,它为Python解释器提供了图像编辑功能。图像模块提供了一个同名的类,用来表示一个PIL图像。该模块还提供了一些工厂函数,包括从文件加载图像和创建新图像的函数。
Image.quantize() 将图像转换为具有指定颜色数量的 “P “模式。
语法: Image.quantize(colors=256, method=None, kmeans=0, palette=None)
参数 :
colors – 所需颜色的数量,<=256
method – 0 = 中位数切割 1 = 最大覆盖率 2 = 快速八叉树
kmeans – 整数
palette – 量化到PIL.ImagingPalette调色板。
返回类型 。一个图像对象。
使用的图片:
# 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()
输出: