とりあえず結論 Python3 で画像を取り扱うには、Pillow(PILの派生版, Python3対応)を使うと良いようです。 python-pillow.github.io サーバー側で作成・処理した Pillow のオブジェクトを、HTTPレスポンスで画像としてクライアントに表示させるには、次のようにします。 ポイントは、Pillow オブジェクトの保存先に BytesIO オブジェクトを指定している点です。 from bottle import default_app, route, HTTPResponse from io import BytesIO from PIL import Image import requests application = default_app() @route('/route/to/your/image/shown') def show_ima