python中如何判断大小_如何确定Python中常见图像类型的类型和大小?

快速的谷歌搜索结果是this pure-python function以获得GIF、PNG和JPEG图像的大小:import struct

from cStringIO import StringIO

def get_image_info(data):

"""

Return (content_type, width, height) for a given img file content

no requirements

"""

data = str(data)

size = len(data)

height = -1

width = -1

content_type = ''

# handle GIFs

if (size >= 10) and data[:6] in ('GIF87a', 'GIF89a'):

# Check to see if content_type is correct

content_type = 'image/gif'

w, h = struct.unpack("

width = int(w)

height = int(h)

# See PNG 2. Edition spec (http://www.w3.org/TR/PNG/)

# Bytes 0-7 are below, 4-byte chunk length, then 'IHDR'

# and finally the 4-byte width, height

elif ((size >= 24) and data.startswith('\211PNG\r\n\032\n')

and (data[12:16] == 'IHDR')):

content_type = 'image/png'

w, h = struct.unpack(">LL", data[16:24])

width = int(w)

height = int(h)

# Maybe this is for an older PNG version.

elif (size >= 16) and data.startswith('\211PNG\r\n\032\n'):

# Check to see if we have the right content type

content_type = 'image/png'

w, h = struct.unpack(">LL", data[8:16])

width = int(w)

height = int(h)

# handle JPEGs

elif (size >= 2) and data.startswith('\377\330'):

content_type = 'image/jpeg'

jpeg = StringIO(data)

jpeg.read(2)

b = jpeg.read(1)

try:

while (b and ord(b) != 0xDA):

while (ord(b) != 0xFF): b = jpeg.read

while (ord(b) == 0xFF): b = jpeg.read(1)

if (ord(b) >= 0xC0 and ord(b) <= 0xC3):

jpeg.read(3)

h, w = struct.unpack(">HH", jpeg.read(4))

break

else:

jpeg.read(int(struct.unpack(">H", jpeg.read(2))[0])-2)

b = jpeg.read(1)

width = int(w)

height = int(h)

except struct.error:

pass

except ValueError:

pass

return content_type, width, height

请注意,该博客上的代码是由emmanuelvaÏSSE编写的。他的博客上没有指定许可证,因此根据您希望包含代码的位置,可能希望重新实现该功能或要求他在安全站点上。在

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值