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

时间:2012-09-27 19:46:54

标签: svg

如何将以下svg代码保存为.svg image

<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>

任何帮助将不胜感激。感谢。

1 个答案:

答案 0 :(得分:72)

只需将其保存在文本文件中,并为其提供.svg扩展名。