使用Python打印图片大小尺寸信息

from PIL import Image

file_path = 'C:/Users/admin/Pictures/scence/1.jpg'

img = Image.open(file_path)
imgSize = img.size  #大小/尺寸
w = img.width       #图片的宽
h = img.height      #图片的高
f = img.format      #图像格式

print(imgSize)
print(w, h, f)
```![aistudio上运行的结果,matplotlib包在上边导入了,这里没截上](https://img-blog.csdnimg.cn/20210326221446786.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dpbmRteXNlbGY=,size_16,color_FFFFFF,t_70#pic_center)


你可能感兴趣的:(数据集相关处理,python)