📜  Python PIL | Image.quantize() 方法

📅  最后修改于: 2022-05-13 01:54:38.584000             🧑  作者: Mango

Python PIL | Image.quantize() 方法

PIL 是Python Imaging Library,它为Python解释器提供了图像编辑功能。 Image模块提供了一个同名的类,用于表示 PIL 图像。该模块还提供了许多工厂函数,包括从文件加载图像和创建新图像的函数。

Image.quantize()将图像转换为具有指定颜色数量的“P”模式。

使用的图像:

# 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() 

输出: