python 获取图片的尺寸宽高信息
# coding: utf8 from PIL import Image
img = Image.open("img.jpg") print img.size
print img.format
原文:https://www.cnblogs.com/zhangtianyuan/p/7306588.html
大步走,一路向前,一路欢歌。
# coding: utf8 from PIL import Image
img = Image.open("img.jpg") print img.size
print img.format
原文:https://www.cnblogs.com/zhangtianyuan/p/7306588.html