如果要在要作为背景图像嵌入的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>