Scalable Vector Graphics

From Just Solve the File Format Problem
(Difference between revisions)
Jump to: navigation, search
m (Gphemsley moved page SVG to Scalable Vector Graphics: Disambiguating SVG.)
(Cleanup and expansion.)
Line 5: Line 5:
 
|mimetypes={{mimetype|image/svg+xml}}
 
|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]].
+
== Specifications ==
  
The [http://www.w3.org/TR/SVG/ specification] is open and there is a [http://www.w3.org/Graphics/SVG/ working group].
+
* [http://www.w3.org/TR/SVG/ Scalable Vector Graphics (SVG)]
 +
** [http://www.w3.org/TR/SVG11/ Scalable Vector Graphics (SVG) 1.1]
 +
*** [http://www.w3.org/TR/2011/REC-SVG11-20110816/ Scalable Vector Graphics (SVG) 1.1 (Second Edition)] (2011-08-16, W3C Recommendation)
 +
*** [http://www.w3.org/TR/2003/REC-SVG11-20030114/ Scalable Vector Graphics (SVG) 1.1 (First Edition)] (2003-01-14, W3C Recommendation)
 +
** Scalable Vector Graphics (SVG) 1.0
 +
*** [http://www.w3.org/TR/2001/REC-SVG-20010904/ Scalable Vector Graphics (SVG) 1.0] (2001-09-04, W3C Recommendation)
  
The following is an example of a simple svg file:
+
== Examples ==
  
 +
The following is an example of a simple SVG file:
 +
 +
<code>
 
   <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
 
   <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" />
 
     <circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" />
 
   </svg>
 
   </svg>
 +
</code>
 +
 +
== External links ==
  
== References ==
+
* [http://www.w3.org/Graphics/SVG/ W3C SVG Working Group]
* [http://www.w3.org/TR/SVG/ Official specification]
+
  
 +
[[Category:XML]]
 
[[Category:XML based file formats]]
 
[[Category:XML based file formats]]

Revision as of 21:28, 2 December 2012

File Format
Name Scalable Vector Graphics
Ontology
Extension(s) .svg
MIME Type(s) image/svg+xml

Scalable Vector Graphics (SVG) is an XML-based method for storing vector images.

Specifications

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>

External links

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox