/ / Pythonで一般的な画像タイプのタイプとサイズを特定するにはどうすればよいですか? - python、画像、画像処理

Pythonで一般的な画像タイプのタイプとサイズを決定するにはどうすればよいですか? - python、画像、画像処理

私は処理のために一連のライブラリに取り組んでいますMicrosoft Office Open XMLドキュメント。 WordやPowerPointのドキュメントに画像を埋め込む際には、画像のMIMEタイプと、ピクセルの寸法などのヘッダーの詳細を調べる必要があります.dpiもうまくいくでしょう。

現在、私はこれを行うために枕を使用していますが、依存関係は、ライブラリに対して2つのステートメントを使うだけですが、依存関係にはlibjpegのようなCコンパイラとイメージライブラリが必要です。これはWindowsで特に難しいインストールですが、OS Xでもそれは私が好きなものよりも関わっています。

純粋なPythonイメージングライブラリを使って基礎を築くことができますか、あるいは合理的に単純なモジュールを私のディストリビューションにマージするだけの方法はありますか?

回答:

回答№1の場合は3

まず第一に、枕を使用するのがおそらく最良の解決策です。 pypiからWindowsバイナリをダウンロードする.

素早くGoogle検索を行った この純粋なpython関数 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("<HH", data[6:10])
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("211PNGrn32n")
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("211PNGrn32n"):
# 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("377330"):
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

そのブログのコードは エマニュエルVASESE。自分のブログにはライセンスが指定されていないので、コードをどこに含めるかによって かもしれない 機能を再実装するか、安全な場所にいるように彼に依頼してください。