Python PIL ImageOps.grayscale()方法
PIL是Python成像库,它为Python解释器提供了图像编辑功能。ImageOps模块包含一些 “现成的 “图像处理操作。这个模块在某种程度上是实验性的,大多数操作只对L和RGB图像起作用。
ImageOps.grayscale() 将图像转换成灰度。完整的像素会变成灰色,不会看到其他颜色。
语法: PIL.ImageOps.grayscale(image)
参数 :
image – 要转换为灰度的图像。
返回一个图像。
使用的图片:
# Importing Image and ImageOps module from PIL package
from PIL import Image, ImageOps
# creating a image1 object
im1 = Image.open(r"C:\Users\System-Pc\Desktop\a.JPG")
# applying grayscale method
im2 = ImageOps.grayscale(im1)
im2.show()
输出: