gpt4 book ai didi

image-processing - 如何在 pycairo 中读取 svg 数据笔划?

转载 作者:行者123 更新时间:2023-12-04 12:52:14 27 4
gpt4 key购买 nike

我有 JPG 图像和 inputvgdraw,一个用于图像注释的 Flash 工具 (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>.

什么功能可以管理这些数据?

最佳答案

您可以使用 librsvg 读取 SVG 输入然后用 cairo 渲染它.如果要在初始图像上绘制 SVG 中的注释,您可能需要使用 PILnumpycairo本身不会加载许多不同的图像格式。

以下是实现这一点的示例(唯一的区别是,实际上我使用专门的 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])

关于image-processing - 如何在 pycairo 中读取 svg 数据笔划?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14927840/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com