ConvertSVG

Contents
[ ]

ConvertSVG(SVGDocument, PdfSaveOptions, string)

Convert svg source to pdf. Result is pdf file.

public static void ConvertSVG(SVGDocument source, PdfSaveOptions options, string outputPath)
Parameter Type Description
source SVGDocument Conversion source.
options PdfSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(Url, PdfSaveOptions, string)

Convert svg source to pdf. Result is pdf file.

public static void ConvertSVG(Url url, PdfSaveOptions options, string outputPath)
Parameter Type Description
url Url The document URL.
options PdfSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(Url, Configuration, PdfSaveOptions, string)

Convert svg source to pdf. Result is pdf file.

public static void ConvertSVG(Url url, Configuration configuration, PdfSaveOptions options, 
    string outputPath)
Parameter Type Description
url Url The document URL.
configuration Configuration The environment configuration.
options PdfSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(string, PdfSaveOptions, string)

Convert svg source to pdf. Result is pdf file.

public static void ConvertSVG(string sourcePath, PdfSaveOptions options, string outputPath)
Parameter Type Description
sourcePath String Svg file source path. It will be combined with the current directory path to form an absolute URL.
options PdfSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(string, Configuration, PdfSaveOptions, string)

Convert svg source to pdf. Result is pdf file.

public static void ConvertSVG(string sourcePath, Configuration configuration, 
    PdfSaveOptions options, string outputPath)
Parameter Type Description
sourcePath String Svg file source path. It will be combined with the current directory path to form an absolute URL.
configuration Configuration The environment configuration.
options PdfSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(string, string, PdfSaveOptions, string)

Convert svg source to pdf. Result is pdf file.

public static void ConvertSVG(string content, string baseUri, PdfSaveOptions options, 
    string outputPath)
Parameter Type Description
content String Inline string svg content.
baseUri String The base URI of the document. It will be combined with the current directory path to form an absolute URL.
options PdfSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(string, string, Configuration, PdfSaveOptions, string)

Convert svg source to pdf. Result is pdf file.

public static void ConvertSVG(string content, string baseUri, Configuration configuration, 
    PdfSaveOptions options, string outputPath)
Parameter Type Description
content String Inline string svg content.
baseUri String The base URI of the document. It will be combined with the current directory path to form an absolute URL.
configuration Configuration The environment configuration.
options PdfSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(SVGDocument, PdfSaveOptions, ICreateStreamProvider)

Convert svg source to pdf. Result is pdf file.

public static void ConvertSVG(SVGDocument document, PdfSaveOptions options, 
    ICreateStreamProvider provider)
Parameter Type Description
document SVGDocument Conversion source.
options PdfSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(Url, PdfSaveOptions, ICreateStreamProvider)

Convert svg source to pdf. Result is pdf file.

public static void ConvertSVG(Url url, PdfSaveOptions options, ICreateStreamProvider provider)
Parameter Type Description
url Url The document URL.
options PdfSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(Url, Configuration, PdfSaveOptions, ICreateStreamProvider)

Convert svg source to pdf. Result is pdf file.

public static void ConvertSVG(Url url, Configuration configuration, PdfSaveOptions options, 
    ICreateStreamProvider provider)
Parameter Type Description
url Url The document URL.
configuration Configuration The environment configuration.
options PdfSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(string, PdfSaveOptions, ICreateStreamProvider)

Convert svg source to pdf. Result is pdf file.

public static void ConvertSVG(string sourcePath, PdfSaveOptions options, 
    ICreateStreamProvider provider)
Parameter Type Description
sourcePath String Svg file source path. It will be combined with the current directory path to form an absolute URL.
options PdfSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(string, Configuration, PdfSaveOptions, ICreateStreamProvider)

Convert svg source to pdf. Result is pdf file.

public static void ConvertSVG(string sourcePath, Configuration configuration, 
    PdfSaveOptions options, ICreateStreamProvider provider)
Parameter Type Description
sourcePath String Svg file source path. It will be combined with the current directory path to form an absolute URL.
configuration Configuration The environment configuration.
options PdfSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(string, string, PdfSaveOptions, ICreateStreamProvider)

Convert svg source to pdf. Result is pdf file.

public static void ConvertSVG(string content, string baseUri, PdfSaveOptions options, 
    ICreateStreamProvider provider)
Parameter Type Description
content String Source document content.
baseUri String The base URI of the document. It will be combined with the current directory path to form an absolute URL.
options PdfSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(string, string, Configuration, PdfSaveOptions, ICreateStreamProvider)

Convert svg source to pdf. Result is pdf file.

public static void ConvertSVG(string content, string baseUri, Configuration configuration, 
    PdfSaveOptions options, ICreateStreamProvider provider)
Parameter Type Description
content String Inline string svg content.
baseUri String The base URI of the document. It will be combined with the current directory path to form an absolute URL.
configuration Configuration The environment configuration.
options PdfSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(SVGDocument, ImageSaveOptions, string)

Convert svg document to image. Result is image file.

public static void ConvertSVG(SVGDocument source, ImageSaveOptions options, string outputPath)
Parameter Type Description
source SVGDocument Conversion source.
options ImageSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(Url, ImageSaveOptions, string)

Convert svg document to image. Result is image file.

public static void ConvertSVG(Url url, ImageSaveOptions options, string outputPath)
Parameter Type Description
url Url The document URL.
options ImageSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(Url, Configuration, ImageSaveOptions, string)

Convert svg document to image. Result is image file.

public static void ConvertSVG(Url url, Configuration configuration, ImageSaveOptions options, 
    string outputPath)
Parameter Type Description
url Url The document URL.
configuration Configuration The environment configuration.
options ImageSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(string, ImageSaveOptions, string)

Convert svg document to image. Result is image file.

public static void ConvertSVG(string sourcePath, ImageSaveOptions options, string outputPath)
Parameter Type Description
sourcePath String Svg file source path. It will be combined with the current directory path to form an absolute URL.
options ImageSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(string, Configuration, ImageSaveOptions, string)

Convert svg document to image. Result is image file.

public static void ConvertSVG(string sourcePath, Configuration configuration, 
    ImageSaveOptions options, string outputPath)
Parameter Type Description
sourcePath String Svg file source path. It will be combined with the current directory path to form an absolute URL.
configuration Configuration The environment configuration.
options ImageSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(string, string, ImageSaveOptions, string)

Convert svg document to image. Result is image file.

public static void ConvertSVG(string content, string baseUri, ImageSaveOptions options, 
    string outputPath)
Parameter Type Description
content String Inline string svg content.
baseUri String The base URI of the document. It will be combined with the current directory path to form an absolute URL.
options ImageSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(string, string, Configuration, ImageSaveOptions, string)

Convert svg document to image. Result is image file.

public static void ConvertSVG(string content, string baseUri, Configuration configuration, 
    ImageSaveOptions options, string outputPath)
Parameter Type Description
content String Inline string svg content.
baseUri String The base URI of the document. It will be combined with the current directory path to form an absolute URL.
configuration Configuration The environment configuration.
options ImageSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(SVGDocument, ImageSaveOptions, ICreateStreamProvider)

Convert svg source to image. Result is image file.

public static void ConvertSVG(SVGDocument document, ImageSaveOptions options, 
    ICreateStreamProvider provider)
Parameter Type Description
document SVGDocument Conversion source.
options ImageSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(Url, ImageSaveOptions, ICreateStreamProvider)

Convert svg source to image. Result is image file.

public static void ConvertSVG(Url url, ImageSaveOptions options, ICreateStreamProvider provider)
Parameter Type Description
url Url The document URL.
options ImageSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(Url, Configuration, ImageSaveOptions, ICreateStreamProvider)

Convert svg source to image. Result is image file.

public static void ConvertSVG(Url url, Configuration configuration, ImageSaveOptions options, 
    ICreateStreamProvider provider)
Parameter Type Description
url Url The document URL.
configuration Configuration The environment configuration.
options ImageSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(string, ImageSaveOptions, ICreateStreamProvider)

Convert svg source to image. Result is image file.

public static void ConvertSVG(string sourcePath, ImageSaveOptions options, 
    ICreateStreamProvider provider)
Parameter Type Description
sourcePath String Svg file source path. It will be combined with the current directory path to form an absolute URL.
options ImageSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(string, Configuration, ImageSaveOptions, ICreateStreamProvider)

Convert svg source to image. Result is image file.

public static void ConvertSVG(string sourcePath, Configuration configuration, 
    ImageSaveOptions options, ICreateStreamProvider provider)
Parameter Type Description
sourcePath String Svg file source path. It will be combined with the current directory path to form an absolute URL.
configuration Configuration The environment configuration.
options ImageSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(string, string, ImageSaveOptions, ICreateStreamProvider)

Convert svg source to image. Result is image file.

public static void ConvertSVG(string content, string baseUri, ImageSaveOptions options, 
    ICreateStreamProvider provider)
Parameter Type Description
content String Inline string svg content.
baseUri String The base URI of the document. It will be combined with the current directory path to form an absolute URL.
options ImageSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(string, string, Configuration, ImageSaveOptions, ICreateStreamProvider)

Convert svg source to image. Result is image file.

public static void ConvertSVG(string content, string baseUri, Configuration configuration, 
    ImageSaveOptions options, ICreateStreamProvider provider)
Parameter Type Description
content String Inline string svg content.
baseUri String The base URI of the document. It will be combined with the current directory path to form an absolute URL.
configuration Configuration The environment configuration.
options ImageSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(SVGDocument, XpsSaveOptions, string)

Convert svg document to xps.Result is xps file.

public static void ConvertSVG(SVGDocument source, XpsSaveOptions options, string outputPath)
Parameter Type Description
source SVGDocument Conversion source.
options XpsSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(Url, XpsSaveOptions, string)

Convert svg source to xps. Result is xps file.

public static void ConvertSVG(Url url, XpsSaveOptions options, string outputPath)
Parameter Type Description
url Url Source document URL.
options XpsSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(Url, Configuration, XpsSaveOptions, string)

Convert svg source to xps. Result is xps file.

public static void ConvertSVG(Url url, Configuration configuration, XpsSaveOptions options, 
    string outputPath)
Parameter Type Description
url Url Source document URL.
configuration Configuration The environment configuration.
options XpsSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(string, XpsSaveOptions, string)

Convert svg source to xps. Result is xps file.

public static void ConvertSVG(string sourcePath, XpsSaveOptions options, string outputPath)
Parameter Type Description
sourcePath String Svg file source path. It will be combined with the current directory path to form an absolute URL.
options XpsSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(string, Configuration, XpsSaveOptions, string)

Convert svg source to xps. Result is xps file.

public static void ConvertSVG(string sourcePath, Configuration configuration, 
    XpsSaveOptions options, string outputPath)
Parameter Type Description
sourcePath String Svg file source path. It will be combined with the current directory path to form an absolute URL.
configuration Configuration The environment configuration.
options XpsSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(string, string, XpsSaveOptions, string)

Convert svg source to xps. Result is xps file.

public static void ConvertSVG(string content, string baseUri, XpsSaveOptions options, 
    string outputPath)
Parameter Type Description
content String Inline string svg content.
baseUri String The base URI of the document. It will be combined with the current directory path to form an absolute URL.
options XpsSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(string, string, Configuration, XpsSaveOptions, string)

Convert svg source to xps. Result is xps file.

public static void ConvertSVG(string content, string baseUri, Configuration configuration, 
    XpsSaveOptions options, string outputPath)
Parameter Type Description
content String Inline string svg content.
baseUri String The base URI of the document. It will be combined with the current directory path to form an absolute URL.
configuration Configuration The environment configuration.
options XpsSaveOptions Conversion options.
outputPath String Output file path.

See Also


ConvertSVG(SVGDocument, XpsSaveOptions, ICreateStreamProvider)

Convert svg source to xps. Result is xps file.

public static void ConvertSVG(SVGDocument document, XpsSaveOptions options, 
    ICreateStreamProvider provider)
Parameter Type Description
document SVGDocument Conversion source.
options XpsSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(Url, XpsSaveOptions, ICreateStreamProvider)

Convert svg source to xps. Result is xps file.

public static void ConvertSVG(Url url, XpsSaveOptions options, ICreateStreamProvider provider)
Parameter Type Description
url Url The document URL.
options XpsSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(Url, Configuration, XpsSaveOptions, ICreateStreamProvider)

Convert svg source to xps. Result is xps file.

public static void ConvertSVG(Url url, Configuration configuration, XpsSaveOptions options, 
    ICreateStreamProvider provider)
Parameter Type Description
url Url The document URL.
configuration Configuration The environment configuration.
options XpsSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(string, XpsSaveOptions, ICreateStreamProvider)

Convert svg source to xps. Result is xps file.

public static void ConvertSVG(string sourcePath, XpsSaveOptions options, 
    ICreateStreamProvider provider)
Parameter Type Description
sourcePath String Svg file source path. It will be combined with the current directory path to form an absolute URL.
options XpsSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(string, Configuration, XpsSaveOptions, ICreateStreamProvider)

Convert svg source to xps. Result is xps file.

public static void ConvertSVG(string sourcePath, Configuration configuration, 
    XpsSaveOptions options, ICreateStreamProvider provider)
Parameter Type Description
sourcePath String Svg file source path. It will be combined with the current directory path to form an absolute URL.
configuration Configuration The environment configuration.
options XpsSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(string, string, XpsSaveOptions, ICreateStreamProvider)

Convert svg source to xps. Result is xps file.

public static void ConvertSVG(string content, string baseUri, XpsSaveOptions options, 
    ICreateStreamProvider provider)
Parameter Type Description
content String Inline string svg content.
baseUri String The base URI of the document. It will be combined with the current directory path to form an absolute URL.
options XpsSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also


ConvertSVG(string, string, Configuration, XpsSaveOptions, ICreateStreamProvider)

Convert svg source to xps. Result is xps file.

public static void ConvertSVG(string content, string baseUri, Configuration configuration, 
    XpsSaveOptions options, ICreateStreamProvider provider)
Parameter Type Description
content String Inline string svg content.
baseUri String The base URI of the document. It will be combined with the current directory path to form an absolute URL.
configuration Configuration The environment configuration.
options XpsSaveOptions Conversion options.
provider ICreateStreamProvider Implementation of the ICreateStreamProvider interface, which will be used to get an output stream.

See Also