python读取图片代码
时间: 2023-10-12 11:13:07 浏览: 158
python连连看代码&图片资源
你可以使用Python中的Pillow库来读取图片。以下是一个简单的示例代码:
```python
from PIL import Image
# 打开图片
image = Image.open('path/to/image.jpg')
# 显示图片
image.show()
# 获取图片大小
width, height = image.size
# 获取像素值
pixels = image.load()
# 获取指定像素的RGB值
r, g, b = pixels[x, y]
```
请注意,`path/to/image.jpg`应该替换为你的图片文件路径。
阅读全文