5

私はJPG画像を持っており、画像注釈用のフラッシュツールであるinputsvgdraw(http://www.mainada.net/inputdraw)を使用して、svgデータを生成する行をトレースできます。

SVG データのサンプル:

<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 488 325"><g fill="none"   stroke-miterlimit="6" stroke-linecap="round" stroke-linejoin="round"><path d="M 307 97 l 0 -1 l -2 -1 l -10 -2 l -20 -1 l -25 5 l -22 9 l -10 9 l 0 9 l 2 12 l 16 18 l 25 11 l 25 5 l 17 -1 l 6 -4 l 3 -7 l -1 -12 l -6 -16 l -7 -13 l -11 -12 l -11 -14 l -9 -5" opacity="1" stroke="rgb(170,37,34)" stroke-width="5"/></g></svg>.

このデータを管理できる機能は何ですか?

4

2 に答える 2

4

を使用して SVG 入力を読み取り、librsvgでレンダリングできcairoます。最初の画像の上に SVG で注釈を描画したい場合は、 with を使用する必要があるかもしれませPILん。numpycairo

以下は、それを実現する例です (唯一の違いは、実際に のアドホックctypesラッパーでテストしたことですrsvg)。

import sys
import rsvg
import cairo
import numpy
from PIL import Image

# Load an image that supposedly has the same width and height as the svg one.
img_rgba = numpy.array(Image.open(sys.argv[1]).convert('RGBA'))
data = numpy.array(img_rgba.tostring('raw', 'BGRA'))
width, height = img_rgba.size

surface = cairo.ImageSurface.create_for_data(data,
        cairo.FORMAT_ARGB32, width, height)
ctx = cairo.Context(surface)

# "Paste" the svg into the image.
svg = rsvg.Handle(file=sys.argv[2])
svg.render_cairo(ctx)

surface.write_to_png(sys.argv[3])
于 2013-02-18T02:49:52.480 に答える