gpt4 book ai didi

php - 在服务器上将文本转换为路径(svg)?

转载 作者:可可西里 更新时间:2023-11-01 12:49:20 26 4
gpt4 key购买 nike

如何从 TTF 字体创建文本并将其转换为静态 SVG 路径?这样任何人都可以在 Illustrator 中打开它并看到单词(作为 .SVG)。

我们的服务器是 Debain,我们主要使用 PHP 进行后端编码。

很高兴使用 Imagemagick 或 Inkscape - 无论它完成什么!

最佳答案

试试这个:

  1. 在 Inkscape 中创建一个 svg 模板文件(参见下面的示例)。
  2. 使用文本编辑器打开该文件,并为您要更改的变量放置一些占位符标记:字体和文本。
  3. 创建一个网页,以便用户可以选择字体并编写文本。
  4. 在服务器中检索该数据。
  5. 读取模板文件,并使用用户数据更改占位符标记。
  6. 通过命令行调用 Inkscape。
inkscape template.svg --export-text-to-path --export-id=maintext --export-pdf=new_file.pdf

现在,我知道,我知道,你说你想要一个 svg 输出......我试过这个选项:

--export-plain-svg=new_file.svg

但根据 Inkscape 手册页:

-T, --export-text-to-path
Convert text objects to paths on export, where applicable (for PS, EPS, and PDF export).

Soooo... 无法获得纯 svg 导出和导出文本到路径 :S ... 顺便说一句,这应该作为一个错误来填写。

您可以提供 PDF,或再次调用:

inkscape -l new_file.svg new_file.pdf

这……我知道,这很愚蠢。不,真的,在 Inkscape 上提交错误 :P

这是示例 Inkscape 模板:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="440.29297"
height="39.824219"
id="svg2">
<defs
id="defs4" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<text
x="-3.4374955"
y="30.390625"
id="maintext"
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:[FONT_PLACEHOLDER]"><tspan
x="-3.4374955"
y="30.390625"
id="tspan3006"
style="fill:#000000">[TEXT_PLACEHOLDER]</tspan></text>
</svg>

亲切的问候。

关于php - 在服务器上将文本转换为路径(svg)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8422558/

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