如何将 svg 代码保存为. svg 映像?

如何将下面的 svg 代码保存为. svg 映像

<svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg">


<defs>
<linearGradient id="fill" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(224,224,224);stop-opacity:1"/>
<stop offset="100%" style="stop-color:rgb(153,153,153);stop-opacity:1"/>
</linearGradient>
</defs>


<path d="M 0 0 L 64 0 L 32 64 z" stroke="colourname" fill="url(#fill)"/>


</svg>

如果你能帮忙,我会很感激的,谢谢。

145238 次浏览

只需要将它保存在一个文本文件中,并给它一个. svg 扩展名。