Python Imaging Libraryで直線を描画するには、以下のコードを実行します。
# coding=UTF-8
import Image
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("sample629a.jpg")
出力画像(sample629a.jpg)
関連情報
Python Imaging Libraryまとめ
No comments:
Post a Comment