标签:style http io 使用 on ef line tt c
SVG意为可缩放矢量图形,使用xml格式定义图形。
预定义的图形形状:矩形<rect>、圆形<circle>、椭圆<ellipse>、线<line>、折线<polyline>、多边形<polygon>、路径<path>、图片<image>
举例:
<svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg">
<--矩形-->
<rect width="300" height="100" style="fill:#0000ff;stroke:black;stroke-width:1;" />
<--图像-->
<image xlink:href="1.jpg" x="400" y="200" width="60" height="60"></image>
</svg>
标签:style http io 使用 on ef line tt c
原文地址:http://www.cnblogs.com/feilv/p/4075962.html