Answers:
宁愿<use>
以<image>
作为后来是在一个固定的分辨率渲染并不会扩展定期矢量对象在当前文档中做。http://www.w3.org/TR/SVG11/struct.html#ImageElement
但是元素<use>
不能引用整个SVG文件,其xlink:href
属性是对SVG文档(http://www.w3.org/TR/SVG11/struct.html#UseElement)中的元素/片段的引用。“ use”元素可以引用任何本地或非本地资源。
例:
MyLibrary.svg:
<svg (...)>
<rect x="0" y="0" width="200" inkscape:label="upper-left-blue"
style="fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="upper-left-blue" height="200"/>
UseParts.svg:
<use x="0" y="0" width="400" xmlns:xlink="http://www.w3.org/1999/xlink"
xlink:href="MyLibrary.svg#upper-left-blue" xlink:type="simple"
xlink:actuate="onLoad" height="400" id="use8793" xlink:show="embed"/>
据我所知(至少)它应在Inkscape,Firefox和Batik中正常运行,不同的SVG编辑器/查看器对该功能的支持可能有所不同。
使用该image
元素并引用您的SVG文件。为了娱乐,将以下内容另存为recursion.svg
:
<svg width="100%" height="100%" viewBox="-100 -100 200 200" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<circle cx="-50" cy="-50" r="30" style="fill:red" />
<image x="10" y="20" width="80" height="80" xlink:href="recursion.svg" />
</svg>
来源:https : //stackoverflow.com/questions/5451135/embed-svg-in-svg/5451238#5451238