python图片大小像素
时间: 2023-11-08 18:02:58 浏览: 158
python 设置输出图像的像素大小方法
Python中可以使用PIL(Pillow)库来获取图片的大小像素。下面是一个示例代码:
```python
from PIL import Image
# 打开图片
image = Image.open('image.jpg')
# 获取图片大小像素
width, height = image.size
print(f"图片宽度:{width}像素")
print(f"图片高度:{height}像素")
```
阅读全文