python 将图片颜色反过来
时间: 2023-07-29 08:07:37 浏览: 68
浅谈Python3识别判断图片主要颜色并和颜色库进行对比的方法
要将图片颜色反过来,可以使用Pillow库中的ImageOps模块,具体操作如下:
```python
from PIL import Image, ImageOps
# 打开图片
image = Image.open('example.jpg')
# 反转颜色
inverted_image = ImageOps.invert(image)
# 保存图片
inverted_image.save('inverted_example.jpg')
```
其中,`example.jpg`是待处理的图片文件名,`inverted_example.jpg`是处理后保存的文件名。
阅读全文