SVG 图像
插入一张图
svg
<svg height="200" width="300" xmlns="http://www.w3.org/2000/svg">
<image height="200" width="300" href="./attachments/svg.svg" />
</svg>
1
2
3
2
3
增加其他图形
svg
<svg height="250" width="300" xmlns="http://www.w3.org/2000/svg">
<circle r="105" cx="150" cy="120" fill="lightblue" />
<image x="0" y="60" width="300" height="100" href="./attachments/svg.svg" />
<text x="108" y="180" fill="black">I Love SVG!</text>
</svg>
1
2
3
4
5
2
3
4
5