如何在python里获取导入图片的大小?
在python中获取导入图片大小的方法:
1、获取图片尺寸大小
import osfrom PIL import Image
path = os.path.join(os.getcwd(),"23.png")
img = Image.open(path)
print img.format # PNG
print img.size # (3500, 3500)
2、获取图片物理大小
#! -*- coding: utf-8 -*-import requests
import io
url = "http://s1.sinaimg.cn/large/001Db1PVzy7qxVQWMjs06"
image = requests.get(url).content
image_b = io.BytesIO(image).read()
size = len(image_b)
print("{} byte
{} kb
{} Mb".format(size, size / 1e3, size / 1e6))
更多Python知识请关注。
以上是 如何在python里获取导入图片的大小? 的全部内容, 来源链接: utcz.com/z/527778.html