Wednesday, November 12, 2008

Python Imaging Libraryで四角を描画する

Python Imaging Libraryで四角を描画するには、以下のコードを実行します。

# coding=UTF-8
import Image
import ImageDraw
# 四角を描画する
img1 = Image.new("RGB", (100,100), (0xff, 0xff, 0xff))
draw = ImageDraw.Draw(img1)
draw.rectangle((10,10,89,89), outline=(0x00, 0x00, 0x00), fill=(0xbb, 0xdd, 0xff))
del draw
img1.save("sample631a.jpg")

出力画像(sample631a.jpg)


関連情報
Python Imaging Libraryまとめ

No comments: