Agile育成ブログ
未来を変える喜びを
Python

Python 画像処理


Warning: count(): Parameter must be an array or an object that implements Countable in /home/xs638785/agile-software.site/public_html/wp-content/plugins/rich-table-of-content/functions.php on line 490

Pillowライブラリを使う

#import PILとするのではなく下記のように書くのはImage下の関数を指定するのが簡単になるため
#PIL.Image.open → Image.open
from PIL import Image

ファイルを開く

image.open("photo\\001.jpg")

ファイルを表示する

img.show()

画像のリサイズ

thumbnailメソッドを使う

引数に指定した幅または高さのいずれか大きい方を上限にリサイズする。

画像のサイズの確認

img.size

画像の保存

元のファイル名を指定すれば上書き保存、別の名前だと別名で保存される。
img.save(引数)

You cannot copy content of this page