PIL で画像を読み込んでみる
Python
Published: 2019-09-11

やったこと

PIL ライブラリを使い、画像を読み込んで表示してみます。

確認環境

$ python
Python 3.6.2 |Anaconda custom (64-bit)| (default, Sep 21 2017, 18:29:43)
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

調査

Pillow をインストールする

$ conda install Pillow

バージョン確認

$ conda list Pillow
# packages in environment at /anaconda3:
#
pillow                    6.1.0            py36hb68e598_0

pil-image-read.py

from PIL import Image
img = Image.open('./sample.jpg')
img.show()

参考