如何在python里获取导入图片的大小?
在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 {} kb {} Mb".format(size, size / 1e3, size / 1e6))
更多Python知识请关注云海天python教程网。
来源:PY学习网:原文地址:https://www.py.cn/article.html