gpt4 book ai didi

javascript - 从 SVG 创建 Paper.js PathItem

转载 作者:行者123 更新时间:2023-11-30 07:42:28 25 4
gpt4 key购买 nike

免责声明:这是我处理矢量图形的第一种方法;)

我正在编写一个网络应用程序,用户上传一些图像(创作绘图),并且他应该上传一个矢量图像 (SVG) 作为“ mask ”。

我正在使用 Paper.js图书馆。

所以,我的目标是阅读 SVG 并创建一个 paper.js PathItem来表示它(然后添加填充颜色,随便什么)。

我尝试了一个简单的形状:

enter image description here

在 SVG 中看起来像:

// Adobe Illustrator
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Livello_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="100px" height="100px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve">
<polygon fill="none" stroke="#000000" points="48.771,12.137 59.323,33.518 82.919,36.947 65.845,53.59 69.875,77.09 48.771,65.994
27.667,77.09 31.697,53.59 14.623,36.947 38.219,33.518 "/>
</svg>


// Inkscape pure svg
<?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="100"
height="100"
viewBox="0 0 100 100"
id="Livello_1"
xml:space="preserve"><metadata
id="metadata3358"><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><defs
id="defs3356" />
<polygon
points="59.323,33.518 82.919,36.947 65.845,53.59 69.875,77.09 48.771,65.994 27.667,77.09 31.697,53.59 14.623,36.947 38.219,33.518 48.771,12.137 "
id="polygon3352"
style="fill:none;stroke:#000000" />
</svg>

处理这种形状非常简单,将 points 字符串转换为数组,创建路径并为每个元素调用 .add()

当形状不仅仅是线条时就会出现问题,例如:

enter image description here

我真的不知道如何将弯曲部分翻译成 paper.js 命令!SVG 包含这样的结构:

<path fill="#FFFFFF" stroke="#000000" d="M74.89,73.117H34.605c-11.32,0-20.497-9.177-20.497-20.497v-5.695
c0-11.32,9.177-20.497,20.497-20.497H74.89"/>
<line fill="none" stroke="#000000" x1="74.89" y1="26.428" x2="74.89" y2="73.117"/>

我读了W3C svg transforms运气不好,我真的不知道如何翻译 M 74.89,73.117 H 34.605 c -11.32,0 -20.497,-9.177 -20.497,-20.497 v -5.695 c 0,-11.32 9.177,-20.497 20.497, -20.497 H 74.89 部分。

有什么想法吗?

最佳答案

您知道 Paper.js 自带成熟的 SVG 解析器和导出器,可以让您非常轻松地导入和导出 SVG 内容吗?

还没有关于它的教程,但是功能页面显示了两个例子:

http://paperjs.org/features/#svg-import-and-export

这里的引用文献中记录了它:

http://paperjs.org/reference/project/#importsvg-svg http://paperjs.org/reference/item/#importsvg-svg

希望对您有所帮助!

关于javascript - 从 SVG 创建 Paper.js PathItem,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13798067/

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