Full Name |
SVG (Scalable Vector Graphics format) |
Format ID |
IG_FORMAT_SVG = 77 |
File Extension(s) |
*.svg |
Data Type |
Vector Image |
Data Encoding |
XML |
Color Profile Support |
No |
ImageGear Multi-Page Support |
No |
ImageGear Alpha Channel Support |
No |
ImageGear 3D Image Support |
No |
ImageGear Raster to Vector Format Conversion Support |
Yes |
ImageGear Unicode Text Display Support |
Yes |
ImageGear Platforms Support |
WIN32, WIN64, .NET, .NET64 |
ImageGear Supported Versions:
ImageGear Supported Features:
- IG_FLTR_DETECTSUPPORT - auto-detection
- IG_FLTR_PAGEREADSUPPORT - single page file reading
- IG_FLTR_PAGEINSERTSUPPORT - single-page file writing
ImageGear Read Support:
- IG_COMPRESSION_NONE - Vector data (static content only)
ImageGear Write Support:
- IG_COMPRESSION_NONE - Vector data (static content only)
ImageGear Filter Control Parameters:
Filter Control Parameter |
Type |
Default Value |
Available Values |
Description |
EXTERN_FILE_PATH |
String |
"" |
Any string up to 262 characters |
Defines a path where external files (like raster images) should be looked for. A value of "" looks in the same directory as the file being loaded. |
WIDTH |
Long |
512 |
Any positive value |
Defines the width of the empty DIB associated with the image after loading. DIB height is calculated using the file's scale factors. See Working with Vector Data. |
Comments:
SVG (Scalable Vector Graphics) is a platform for two-dimensional graphics. It has two parts: an XML-based file format and a programming API for graphical applications. SVG allows for three types of graphic objects: vector graphic shapes (e.g., paths consisting of straight lines and curves), raster images, and text. Graphical objects can be grouped, styled, transformed and composited into previously rendered objects. Text can be in any XML namespace suitable to the application, which enhances searchability and accessibility of the SVG graphics. The feature set includes nested transformations, clipping paths, alpha masks, filter effects, template objects and extensibility.
SVG drawings can be dynamic and interactive. The Document Object Model (DOM) for SVG, which includes the full XML DOM, allows for straightforward and efficient vector graphics animation via scripting. A rich set of event handlers such as onmouseover and onclick can be assigned to any SVG graphical object. Because of its compatibility and leveraging of other Web standards, features like scripting can be done on SVG elements and other XML elements from different namespaces simultaneously within the same Web page.
References Used:
About SVG - 2d Graphics in XML.- http://www.w3.org/Graphics/SVG/About.html