要对图像进行灰度化和反相处理,可以使用Pillow库中的Image模块来实现。下面是一个示例代码:
from PIL import Image
# 打开图像文件
image = Image.open('example.jpg')
# 将图像转换为灰度图像
gray_image = image.convert('L')
# 反相处理
inverted_image = Image.eval(gray_image, lambda x: 255 - x)
# 保存处理后的图像
inverted_image.save('inverted_example.jpg')
在这段代码中,首先使用Image.open()
方法打开要处理的图像文件。然后使用convert('L')
方法将图像转换为灰度图像。最后使用Image.eval()
方法对灰度图像进行反相处理,即将每个像素值减去255得到反相图像。最后调用save()
方法保存处理后的图像文件。
运行以上代码后,会生成一个经过灰度化和反相处理的图像文件inverted_example.jpg
。