在 c++ 中创建 SVG 图像
我想使用 C++ 从某些图像点以编程方式创建 SVG 图像。有人能帮我吗?
I want to create a SVG image programmatically using preferably c++ from some image points. Can anyone help me with that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
simple-svg 是一个易于使用的仅标头的 svg 库:
simple_svg_1.0.0
以下是如何使用它的示例:main_1.0.0.cpp
它也托管在 GitHub 上。
simple-svg is a header only svg lib easy to use:
simple_svg_1.0.0
Here is an example how to use it: main_1.0.0.cpp
It is also hosted on GitHub.
您可以查看 LibBoard。我自己没有使用它的经验,所以我不能保证它的有用性,但它似乎确实是您正在寻找的东西。我不确定你的目标图像有多复杂,但网站指出:
因此,您将获得它的基本功能,并且您可能可以使用基本的形状列表来创建一些非常复杂的图像。
You could check out LibBoard. I have no experience with it myself, so I can't vouch for its usefulness, but it does appear to be what you're looking for. I'm not sure how complicated your target image is going to be, but the website states:
So you'll have basic functionality from it, and you can probably mess around with the basic list of shapes to create some pretty complicated images.