pillow-ellipse.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.ellipse((0,0,99,99), outline=(0x00, 0x00, 0x00), fill=(0xbb, 0xdd, 0xff))
del draw
img1.save("/tmp/pillow-ellipse.png")
〇出力画像(pillow-ellipse.png)
〇関連情報
・Dockerでpython3.7とPillowをインストールしたコンテナ(Alpine3.9ベース)を作成する
No comments:
Post a Comment