SVG (Scalable Vector Graphics)
SVGとは、2Dのベクター画像を記述するためのXMLベースの言語です。SVGとは 【Scalable Vector Graphics】 - IT用語辞典 e-Words
要素 (element)
基本図形 (Basic shapes)
| 要素 |
説明 |
| circle |
|
| ellipse |
|
| line |
|
| polygon |
|
| polyline |
|
| rect |
|
属性 (Attributes)
表示方法
<object type="image/svg+xml" data="sample.svg"></object>
<img src="sample.svg" />
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect x="0" y="0" width="200" height="100" fill="gray" />
<circle cx="30" cy="30" r="20" fill="white" />
</svg>
| 要素 |
表示例 |
| object |
|
| img |
 |
| svg |
|