Python PIL ImageOps.grayscale()方法

Python PIL ImageOps.grayscale()方法

PIL是Python成像库,它为Python解释器提供了图像编辑功能。ImageOps模块包含一些 “现成的 “图像处理操作。这个模块在某种程度上是实验性的,大多数操作只对L和RGB图像起作用。
ImageOps.grayscale() 将图像转换成灰度。完整的像素会变成灰色,不会看到其他颜色。

语法: PIL.ImageOps.grayscale(image)
参数 :
image – 要转换为灰度的图像。
返回一个图像。

使用的图片:

Python PIL ImageOps.grayscale()方法

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

输出:

Python PIL ImageOps.grayscale()方法

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程