pillow-line.py
# coding=UTF-8
from PIL import Image
from PIL import ImageDraw
# 線を引く
img1 = Image.new("RGB", (100,100), (0xff, 0xff, 0xff))
draw = ImageDraw.Draw(img1)
draw.line((0,100)+(100,0), fill=(0xbb, 0xdd, 0xff), width=2)
del draw
img1.save("/tmp/pillow-line.png")
〇出力画像(pillow-line.png)
〇関連情報
・Dockerでpython3.7とPillowをインストールしたコンテナ(Alpine3.9ベース)を作成する
No comments:
Post a Comment