您现在的位置是:课程教程文章

如何在python里获取导入图片的大小?

2023-12-18 18:39课程教程文章 人已围观

在python中获取导入图片大小的方法:

1、获取图片尺寸大小

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

更多Python知识请关注Python自学网。

课程教程:如何在python里获取导入图片的大小?

上一篇:python中在语句的末尾加分号有影响吗?

下一篇:没有了

站点信息

  • 文章统计篇文章