python读取照片
时间: 2023-06-30 10:21:26 浏览: 78
python实现数字照片墙
要读取照片,你可以使用Python的Pillow库(也称为PIL - Python Imaging Library)。以下是一个简单的示例代码,用于读取照片并显示它:
```python
from PIL import Image
# 打开照片
image = Image.open("example.jpg")
# 显示照片
image.show()
```
在上面的代码中,`Image.open()`方法用于打开照片文件,`show()`方法用于显示照片。你可以将`"example.jpg"`替换为你的照片文件名。
除了显示照片,你还可以使用Pillow库来处理照片,例如调整大小、裁剪、旋转、添加水印等等。
阅读全文