이미지 내용에 관심이 없다면 PIL은 아마도 과잉 일 것입니다.
파이썬 매직 모듈의 출력을 구문 분석하는 것이 좋습니다.
>>> t = magic.from_file('teste.png')
>>> t
'PNG image data, 782 x 602, 8-bit/color RGBA, non-interlaced'
>>> re.search('(\d+) x (\d+)', t).groups()
('782', '602')
이것은 파일 유형 서명을 식별하기 위해 가능한 한 적은 바이트를 읽는 libmagic을 둘러싼 래퍼입니다.
관련 스크립트 버전 :
https://raw.githubusercontent.com/scardine/image_size/master/get_image_size.py
[최신 정보]
흠, 안타깝게도 jpeg에 적용하면 위의 내용은 " 'JPEG 이미지 데이터, EXIF 표준 2.21'"을 제공합니다. 이미지 크기가 없습니다! – 알렉스 부싯돌
jpeg는 마법에 강합니다. :-)
이유를 알 수 있습니다. JPEG 파일의 이미지 크기를 얻으려면 libmagic이 읽는 것보다 더 많은 바이트를 읽어야 할 수 있습니다.
내 소매 를 감고 타사 모듈이 필요하지 않은 테스트되지 않은 코드 조각 (GitHub에서 가져 오기)과 함께 제공되었습니다 .
#-------------------------------------------------------------------------------
# Name: get_image_size
# Purpose: extract image dimensions given a file path using just
# core modules
#
# Author: Paulo Scardine (based on code from Emmanuel VAÏSSE)
#
# Created: 26/09/2013
# Copyright: (c) Paulo Scardine 2013
# Licence: MIT
#-------------------------------------------------------------------------------
#!/usr/bin/env python
import os
import struct
class UnknownImageFormat(Exception):
pass
def get_image_size(file_path):
"""
Return (width, height) for a given img file content - no external
dependencies except the os and struct modules from core
"""
size = os.path.getsize(file_path)
with open(file_path) as input:
height = -1
width = -1
data = input.read(25)
if (size >= 10) and data[:6] in ('GIF87a', 'GIF89a'):
# GIFs
w, h = struct.unpack("<HH", data[6:10])
width = int(w)
height = int(h)
elif ((size >= 24) and data.startswith('\211PNG\r\n\032\n')
and (data[12:16] == 'IHDR')):
# PNGs
w, h = struct.unpack(">LL", data[16:24])
width = int(w)
height = int(h)
elif (size >= 16) and data.startswith('\211PNG\r\n\032\n'):
# older PNGs?
w, h = struct.unpack(">LL", data[8:16])
width = int(w)
height = int(h)
elif (size >= 2) and data.startswith('\377\330'):
# JPEG
msg = " raised while trying to decode as JPEG."
input.seek(0)
input.read(2)
b = input.read(1)
try:
while (b and ord(b) != 0xDA):
while (ord(b) != 0xFF): b = input.read(1)
while (ord(b) == 0xFF): b = input.read(1)
if (ord(b) >= 0xC0 and ord(b) <= 0xC3):
input.read(3)
h, w = struct.unpack(">HH", input.read(4))
break
else:
input.read(int(struct.unpack(">H", input.read(2))[0])-2)
b = input.read(1)
width = int(w)
height = int(h)
except struct.error:
raise UnknownImageFormat("StructError" + msg)
except ValueError:
raise UnknownImageFormat("ValueError" + msg)
except Exception as e:
raise UnknownImageFormat(e.__class__.__name__ + msg)
else:
raise UnknownImageFormat(
"Sorry, don't know how to get information from this file."
)
return width, height
[2019 년 업데이트]
Rust 구현을 확인하세요 : https://github.com/scardine/imsz
.open()
전체 파일을 메모리로 읽는 다고 믿지 않습니다 . (그게 무슨 일인지.load()
)-제가 아는 한-이것은 사용하는 것만 큼 좋습니다PIL