Python将图片颜色颠倒
时间: 2024-03-28 10:17:05 浏览: 124
浅谈Python3识别判断图片主要颜色并和颜色库进行对比的方法
可以使用Pillow库来处理图片,以下是将图片颜色颠倒的Python代码:
```python
from PIL import Image
# 打开图片
image = Image.open('example.jpg')
# 将图片颜色颠倒
inverted_image = ImageOps.invert(image)
# 保存处理后的图片
inverted_image.save('inverted_example.jpg')
```
在这个例子中,我们首先使用`Image.open()`打开了一张名为`example.jpg`的图片。然后,我们使用`ImageOps.invert()`将图片颜色颠倒,并将处理后的图片保存为`inverted_example.jpg`。
阅读全文