画像処理についてあれこれ
ImageMagickをメインに、画像処理についてのTipsを書いていきます。
Tuesday, November 04, 2008
Python Imaging Libraryで任意の色・サイズの背景画像を作成する
PILで任意の色・サイズの背景画像を作成するには、以下のコードを実行します。
# coding=UTF-8
import Image
# 任意の色・サイズの背景画像を作成する
img1 = Image.new("RGB", (100,100), (0xbb, 0xdd, 0xff))
img1.save("sample627a.jpg")
出力画像(sample627a.jpg)
関連情報
Python Imaging Libraryまとめ
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment