gpt4 book ai didi

python - 如何使用标准 Python 类(不使用外部库)获取图像大小?

转载 作者:IT老高 更新时间:2023-10-28 21:40:08 25 4
gpt4 key购买 nike

我正在使用 Python 2.5。并使用 Python 中的标准类,我想确定文件的图像大小。

我听说过 PIL(Python 图像库),但它需要安装才能工作。

我如何在不使用任何外部库的情况下仅使用 Python 2.5 自己的模块来获取图像的大小?

注意我想支持常见的图像格式,尤其是 JPG 和 PNG。

最佳答案

这是一个 python 3 脚本,它返回一个元组,其中包含 .png、.gif 和 .jpeg 的图像高度和宽度,而不使用任何外部库(即上面提到的 Kurt McKee)。将其转移到 Python 2 应该相对容易。

import struct
import imghdr

def get_image_size(fname):
'''Determine the image type of fhandle and return its size.
from draco'''
with open(fname, 'rb') as fhandle:
head = fhandle.read(24)
if len(head) != 24:
return
if imghdr.what(fname) == 'png':
check = struct.unpack('>i', head[4:8])[0]
if check != 0x0d0a1a0a:
return
width, height = struct.unpack('>ii', head[16:24])
elif imghdr.what(fname) == 'gif':
width, height = struct.unpack('<HH', head[6:10])
elif imghdr.what(fname) == 'jpeg':
try:
fhandle.seek(0) # Read 0xff next
size = 2
ftype = 0
while not 0xc0 <= ftype <= 0xcf:
fhandle.seek(size, 1)
byte = fhandle.read(1)
while ord(byte) == 0xff:
byte = fhandle.read(1)
ftype = ord(byte)
size = struct.unpack('>H', fhandle.read(2))[0] - 2
# We are at a SOFn block
fhandle.seek(1, 1) # Skip `precision' byte.
height, width = struct.unpack('>HH', fhandle.read(4))
except Exception: #IGNORE:W0703
return
else:
return
return width, height

关于python - 如何使用标准 Python 类(不使用外部库)获取图像大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8032642/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com