python 获取图像尺寸
时间: 2023-03-29 12:03:58 浏览: 175
python OCR 识别
5星 · 资源好评率100%
可以使用PIL库中的Image模块来获取图像尺寸,代码如下:
```python
from PIL import Image
img = Image.open('image.jpg')
width, height = img.size
print('图像尺寸为:', width, 'x', height)
```
其中,'image.jpg'为图像文件的路径,width和height分别为图像的宽度和高度。
阅读全文