python 获取图片的宽高
时间: 2024-04-24 18:20:19 浏览: 100
获取图形的高和宽
以下是两种Python获取图片宽高的方法:
方法一:使用OpenCV库[^1]
```python
import cv2
file_path = 'C:/Users/admin/Pictures/scence/1.jpg'
img = cv2.imread(file_path)
sp = img.shape
height = sp # 图片的高度
width = sp # 图片的宽度
print("图片的宽度:", width)
print("图片的高度:", height)
```
方法二:使用Pillow库
```python
from PIL import Image
file_path = 'C:/Users/admin/Pictures/scence/1.jpg'
img = Image.open(file_path)
width, height = img.size
print("图片的宽度:", width)
print("图片的高度:", height)
```
阅读全文