使用Python获取图片的物理尺寸(KB)

问题

如何获取图片的物理尺寸,而非(width, height)?


代码

以女神图为例

#! -*- 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\n{} kb\n{} Mb".format(size, size / 1e3, size / 1e6))

结果

image.png

注意

实际大小要除以1000,而非1024

————————————————

原文链接:https://blog.csdn.net/ZWX2445205419/article/details/90666121


支付宝扫码打赏 微信扫码打赏

如果本文对你有帮助,欢迎打赏本站

喜欢 ()or分享
    匿名评论
  • 评论
人参与,条评论