Converter Class

Converter class

Shared facade only for most often conversion scenarios. It provides a wide range of conversions to the popular formats, such as PDF, XPS, image formats, etc. More specific conversion (rendering, saving) user cases are presented by well known and documented low level API functions.

public static class Converter

Methods

NameDescription
static ConvertSVG(string, ImageSaveOptions, ICreateStreamProvider)Convert svg source to image. Result is image file.
static ConvertSVG(string, ImageSaveOptions, string)Convert svg document to image. Result is image file.
static ConvertSVG(string, PdfSaveOptions, ICreateStreamProvider)Convert svg source to pdf. Result is pdf file.
static ConvertSVG(string, PdfSaveOptions, string)Convert svg source to pdf. Result is pdf file.
static ConvertSVG(string, XpsSaveOptions, ICreateStreamProvider)Convert svg source to xps. Result is xps file.
static ConvertSVG(string, XpsSaveOptions, string)Convert svg source to xps. Result is xps file.
static ConvertSVG(SVGDocument, ImageSaveOptions, ICreateStreamProvider)Convert svg source to image. Result is image file.
static ConvertSVG(SVGDocument, ImageSaveOptions, string)Convert svg document to image. Result is image file.
static ConvertSVG(SVGDocument, PdfSaveOptions, ICreateStreamProvider)Convert svg source to pdf. Result is pdf file.
static ConvertSVG(SVGDocument, PdfSaveOptions, string)Convert svg source to pdf. Result is pdf file.
static ConvertSVG(SVGDocument, XpsSaveOptions, ICreateStreamProvider)Convert svg source to xps. Result is xps file.
static ConvertSVG(SVGDocument, XpsSaveOptions, string)Convert svg document to xps.Result is xps file.
static ConvertSVG(Url, ImageSaveOptions, ICreateStreamProvider)Convert svg source to image. Result is image file.
static ConvertSVG(Url, ImageSaveOptions, string)Convert svg document to image. Result is image file.
static ConvertSVG(Url, PdfSaveOptions, ICreateStreamProvider)Convert svg source to pdf. Result is pdf file.
static ConvertSVG(Url, PdfSaveOptions, string)Convert svg source to pdf. Result is pdf file.
static ConvertSVG(Url, XpsSaveOptions, ICreateStreamProvider)Convert svg source to xps. Result is xps file.
static ConvertSVG(Url, XpsSaveOptions, string)Convert svg source to xps. Result is xps file.
static ConvertSVG(string, Configuration, ImageSaveOptions, ICreateStreamProvider)Convert svg source to image. Result is image file.
static ConvertSVG(string, Configuration, ImageSaveOptions, string)Convert svg document to image. Result is image file.
static ConvertSVG(string, Configuration, PdfSaveOptions, ICreateStreamProvider)Convert svg source to pdf. Result is pdf file.
static ConvertSVG(string, Configuration, PdfSaveOptions, string)Convert svg source to pdf. Result is pdf file.
static ConvertSVG(string, Configuration, XpsSaveOptions, ICreateStreamProvider)Convert svg source to xps. Result is xps file.
static ConvertSVG(string, Configuration, XpsSaveOptions, string)Convert svg source to xps. Result is xps file.
static ConvertSVG(string, string, ImageSaveOptions, ICreateStreamProvider)Convert svg source to image. Result is image file.
static ConvertSVG(string, string, ImageSaveOptions, string)Convert svg document to image. Result is image file.
static ConvertSVG(string, string, PdfSaveOptions, ICreateStreamProvider)Convert svg source to pdf. Result is pdf file.
static ConvertSVG(string, string, PdfSaveOptions, string)Convert svg source to pdf. Result is pdf file.
static ConvertSVG(string, string, XpsSaveOptions, ICreateStreamProvider)Convert svg source to xps. Result is xps file.
static ConvertSVG(string, string, XpsSaveOptions, string)Convert svg source to xps. Result is xps file.
static ConvertSVG(Url, Configuration, ImageSaveOptions, ICreateStreamProvider)Convert svg source to image. Result is image file.
static ConvertSVG(Url, Configuration, ImageSaveOptions, string)Convert svg document to image. Result is image file.
static ConvertSVG(Url, Configuration, PdfSaveOptions, ICreateStreamProvider)Convert svg source to pdf. Result is pdf file.
static ConvertSVG(Url, Configuration, PdfSaveOptions, string)Convert svg source to pdf. Result is pdf file.
static ConvertSVG(Url, Configuration, XpsSaveOptions, ICreateStreamProvider)Convert svg source to xps. Result is xps file.
static ConvertSVG(Url, Configuration, XpsSaveOptions, string)Convert svg source to xps. Result is xps file.
static ConvertSVG(string, string, Configuration, ImageSaveOptions, ICreateStreamProvider)Convert svg source to image. Result is image file.
static ConvertSVG(string, string, Configuration, ImageSaveOptions, string)Convert svg document to image. Result is image file.
static ConvertSVG(string, string, Configuration, PdfSaveOptions, ICreateStreamProvider)Convert svg source to pdf. Result is pdf file.
static ConvertSVG(string, string, Configuration, PdfSaveOptions, string)Convert svg source to pdf. Result is pdf file.
static ConvertSVG(string, string, Configuration, XpsSaveOptions, ICreateStreamProvider)Convert svg source to xps. Result is xps file.
static ConvertSVG(string, string, Configuration, XpsSaveOptions, string)Convert svg source to xps. Result is xps file.

See Also