Difference between revisions of "SVG"

From VideoLAN Wiki
Jump to navigation Jump to search
(Create page, own work, as brief introduction to SVGs)
 
(→‎Source code: New section)
Line 3: Line 3:
  
 
SVG is an acronym for scalable vector graphics. It's an [[XML]]-based container that allows for resizing certain types of images to any size without appearing pixellated. It falls under the class of ''vector image formats'', in contrast to ''raster image formats'' (e.g. [[JPG]], [[GIF]]). It supports [[lossless]] [[compression]].
 
SVG is an acronym for scalable vector graphics. It's an [[XML]]-based container that allows for resizing certain types of images to any size without appearing pixellated. It falls under the class of ''vector image formats'', in contrast to ''raster image formats'' (e.g. [[JPG]], [[GIF]]). It supports [[lossless]] [[compression]].
 +
 +
== Source code ==
 +
* {{VLCSourceFile|modules/codec/svg.c}}

Revision as of 05:48, 23 February 2019

??
VLC can decode this container.
The module name to use at the command line is unknown.

SVG is an acronym for scalable vector graphics. It's an XML-based container that allows for resizing certain types of images to any size without appearing pixellated. It falls under the class of vector image formats, in contrast to raster image formats (e.g. JPG, GIF). It supports lossless compression.

Source code