Scalable Vector Graphics
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) m |
Dan Tobias (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | { | + | {{FormatInfo |
− | | | + | |formattype=electronic |
− | | | + | |subcat=Graphics |
− | | | + | |extensions={{ext|svg}} |
− | | | + | |mimetypes={{mimetype|image/svg+xml}} |
− | | | + | }} |
− | | | + | |
− | + | ||
− | + | ||
Scalable Vector Graphics (SVG) is an [[XML]] based method for storing [[Graphics|vector images]]. | Scalable Vector Graphics (SVG) is an [[XML]] based method for storing [[Graphics|vector images]]. | ||
Line 18: | Line 15: | ||
<circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" /> | <circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" /> | ||
</svg> | </svg> | ||
− | |||
− | |||
− | |||
− | |||
== References == | == References == | ||
* [http://www.w3.org/TR/SVG/ Official specification] | * [http://www.w3.org/TR/SVG/ Official specification] |
Revision as of 16:43, 17 November 2012
Scalable Vector Graphics (SVG) is an XML based method for storing vector images.
The specification is open and there is a working group.
The following is an example of a simple svg file:
<svg xmlns="http://www.w3.org/2000/svg" version="1.1"> <circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" /> </svg>