嵌入背景图像时在SVG中使用图像

时间:2015-01-12 18:09:14

标签: image svg background encode

如果要在要作为背景图像嵌入的SVG中使用位图图像,则必须对位图进行编码。否则它不会加载。

<image x="0" y="0" width="700" height="700" xlink:href="data:image/png;base64,..." />

或在模式中:

<pattern id="pattern1" x="0" y="0" width="700" height="700" patternUnits="userSpaceOnUse" >
        <image x="0" y="0" width="700" height="700" xlink:href="data:image/png;base64,..." />
</pattern>

0 个答案:

没有答案