Saturday, May 14, 2011

PythonMagickで単色の画像を作成する

PythonMagickで単色の画像を作成するには、以下のコードを実行します。

# coding=UTF-8
import PythonMagick

# 単色の画像を作成する
img = PythonMagick.Image(
PythonMagick._PythonMagick.Geometry(150, 150),
"#ccddff")

img.write("img14.jpg")

出力画像


※ubuntuでPythonMagickをインストールするには、以下のコマンドを実行します。
sudo apt-get install python-pythonmagick

動作環境
python 2.6.6, python-pythonmagick 0.9.1

No comments: