Python PIL | Image.quantize() method Last Updated : 17 Jul, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. The Image module provides a class with the same name which is used to represent a PIL image. The module also provides a number of factory functions, including functions to load images from files, and to create new images. Image.quantize() Convert the image to ‘P’ mode with the specified number of colors. 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. Image Used: Python3 1== # 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() Output: Comment More infoAdvertise with us Next Article Python PIL | Image.quantize() method S Sunitamamgai Follow Improve Article Tags : Python Python-pil Practice Tags : python Similar Reads Python PIL | Image.resize() method PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. The Image module provides a class with the same name which is used to represent a PIL image. The module also provides a number of factory functions, including functions to load images from files, 4 min read Python PIL | Image.save() method PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. The Image module provides a class with the same name which is used to represent a PIL image. The module also provides a number of factory functions, including functions to load images from files, 3 min read Python PIL | ImageOps.solarize() method PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. The ImageOps module contains a number of âready-madeâ image processing operations. This module is somewhat experimental, and most operators only work on L and RGB images.ImageOps.solarize() Inver 1 min read Python PIL | Image.thumbnail() Method PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. The Image module provides a class with the same name which is used to represent a PIL image. The module also provides a number of factory functions, including functions to load images from files, 2 min read Python PIL | Image.split() method PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. Image.split() method is used to split the image into individual bands. This method returns a tuple of individual image bands from an image. Splitting an âRGBâ image creates three new images each 1 min read Like