python读取一张图片文件的宽度和高度
时间: 2023-07-18 20:07:59 浏览: 85
获取jpg文件宽和高
5星 · 资源好评率100%
你可以使用Python的Pillow库来读取图片文件的宽度和高度。下面是示例代码:
```python
from PIL import Image
# 打开图片文件
image = Image.open("example.jpg")
# 获取宽度和高度
width, height = image.size
print("宽度:", width)
print("高度:", height)
```
在这个示例中,我们打开了名为“example.jpg”的图片文件,并使用`.size`属性获取了它的宽度和高度。
阅读全文