# 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:
Post a Comment