Scalable Vector Graphics
From Just Solve the File Format Problem
(Difference between revisions)
(Cleanup and expansion.) |
(→External links: wp) |
||
Line 28: | Line 28: | ||
== External links == | == External links == | ||
+ | * [[Wikipedia:Scalable Vector Graphics]] | ||
* [http://www.w3.org/Graphics/SVG/ W3C SVG Working Group] | * [http://www.w3.org/Graphics/SVG/ W3C SVG Working Group] | ||
[[Category:XML]] | [[Category:XML]] | ||
[[Category:XML based file formats]] | [[Category:XML based file formats]] |
Revision as of 21:29, 2 December 2012
Scalable Vector Graphics (SVG) is an XML-based method for storing vector images.
Specifications
- Scalable Vector Graphics (SVG)
- Scalable Vector Graphics (SVG) 1.1
- Scalable Vector Graphics (SVG) 1.1 (Second Edition) (2011-08-16, W3C Recommendation)
- Scalable Vector Graphics (SVG) 1.1 (First Edition) (2003-01-14, W3C Recommendation)
- Scalable Vector Graphics (SVG) 1.0
- Scalable Vector Graphics (SVG) 1.0 (2001-09-04, W3C Recommendation)
- Scalable Vector Graphics (SVG) 1.1
Examples
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>