pycairoでビットマップイメージを描画するには、以下のコードを実行します。
# coding=UTF-8
import cairo
img = cairo.ImageSurface.create_from_png("flower1.png")
surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, 200, 200)
ctx = cairo.Context(surface)
ctx.set_source_surface(img, 10, 10)
ctx.paint()
ctx.set_source_surface(img, 10, 170)
ctx.paint()
ctx.set_source_surface(img, 170, 10)
ctx.paint()
ctx.set_source_surface(img, 170, 170)
ctx.paint()
surface.write_to_png('sample1001a.png')
ビットマップ画像(flower1.png)
出力画像(sample1001a.png)
動作環境
Python2.6.1, GTK+2.16.0, pycairo1.4.12-2
関連項目
pycairoのまとめ
pycairoをWindowsにインストール
No comments:
Post a Comment