溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

在python里獲取導(dǎo)入圖片大小的方法

發(fā)布時間:2020-07-06 16:05:12 來源:億速云 閱讀:161 作者:清晨 欄目:編程語言

小編給大家分享一下在python里獲取導(dǎo)入圖片大小的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

在python中獲取導(dǎo)入圖片大小的方法:

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里獲取導(dǎo)入圖片大小的方法有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI