将文本转换为服务器上的路径(svg)?
如何从 TTF 字体创建文本并将其转换为静态 SVG 路径?这样任何人都可以在 illustrator 中打开它并看到这个词(作为 .SVG)。
我们的服务器是Debain,我们主要使用PHP进行后端编码。
很高兴使用 Imagemagick 或 Inkscape - 无论完成什么!
How can I create text from a TTF font and convert it into a static SVG path? So that anyone could open it in illustrator and see the word (as an .SVG).
Our server is Debain, and we primarily use PHP for backend coding.
Happy to use Imagemagick or Inkscape - whatever gets it done!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
现在,我知道,我知道,你说你想要 svg 输出...我尝试了该选项:
但根据 Inkscape 手册页:
Soooo...无法获得纯 svg 导出并将文本导出到路径 :S 。 ..顺便说一句,这应该作为一个错误来填补。
您可以提供 PDF,或者再次致电:
这……我知道,这是相当愚蠢的。不,真的,请在 Inkscape 上提交错误:P
这是示例 Inkscape 模板:
亲切的问候。
Try this:
Now, I know, I know, you said you want an svg output... I tried the option:
But according to the Inkscape man page:
Soooo... can't get plain svg export and exporting text to path :S ... BTW this should be filled as a bug.
You can serve the PDF, or call again:
Which... I know, is quite stupid. No, really, file a bug on Inkscape :P
This is the example Inkscape template:
Kind regards.
您还可以告诉inkscape以gui模式打开您的文件然后发出命令。以下命令行输入打开一个 svg,选择所有节点,并将它们转换为路径。这将允许您将转换后的 svg 保存回 svg。
请注意,这将覆盖您的文件!
You can also tell inkscape to open your file in gui mode and then issue commands. The following command line input opens an svg, selects all nodes, and converts them into paths. This will allow you to save your converted svg back to svg.
Beware, this will override your file!
或者更简单,使用 EasySVG,该库将文本转换为 SVG 定义。然后您可以将此定义放入路径或其他路径中。
该定义基于字体的 SVG 文件,但您可以轻松地将 TTF 文件转换为 SVG...
Or even simpler, use EasySVG, this library converts a text to a SVG definition. You can then put this definition in a path, or whatever.
The definition is based on a font's SVG file but you can easily convert TTF files to SVG...