[Python]Pillow(PIL)で画像サイズ(幅、高さ)を取得する

環境
PyCharm 2021.3
Python 3.9.7

構文
Image.ope(画像ファイルパス)
Pillow(PIL)で画像を読み込むと得られるPIL.Imageオブジェクトは、属性size, width, heightを
取得します。Pillow(PIL)画像を扱うライブラリでsize, width, heightで画像サイズ(幅、高さ)を取得します。
使用例

import numpy as np

from PIL import Image

print("画像を読み込む")
tt = Image.open('C:\\study\\11.png')
print("画像サイズ")
print(tt.size)
print(type(tt.size))

w, h = tt.size
print('画像の幅: ', w)
print('画像の高さ:', h)

実行結果

画像を読み込む
画像サイズ
(640, 1136)
<class 'tuple'>
画像の幅:  640
画像の高さ: 1136

 

Python

Posted by arkgame