Convert

Convert class

Represents a group of methods intended to convert Presentation.

class Convert

Methods

MethodDescription
static void AutoByExtension(System::String, System::String)Converts Presentation using the passed output path extension to determine the required export format.
Convert()
static void ToPdf(System::String, System::String)Converts Presentation to PDF.
static void ToPdf(System::String, System::String, System::SharedPtr<Aspose::Slides::Export::IPdfOptions>)Converts Presentation to PDF.
static void ToPdf(System::SharedPtr<Presentation>, System::String)Converts Presentation to PDF.
static void ToPdf(System::SharedPtr<Presentation>, System::String, System::SharedPtr<Aspose::Slides::Export::IPdfOptions>)Converts Presentation to PDF.
static void ToSvg(System::String)Converts Presentation to SVG.
static void ToSvg(System::String, Convert::GetOutPathCallback)Converts Presentation to SVG.
static void ToSvg(System::SharedPtr<Presentation>, Convert::GetOutPathCallback)Converts Presentation to SVG.
static void ToSvg(System::SharedPtr<Presentation>, System::SharedPtr<Aspose::Slides::Export::ISVGOptions>)Converts Presentation to SVG.
static void ToSvg(System::SharedPtr<Presentation>, Convert::GetOutPathCallback, System::SharedPtr<Aspose::Slides::Export::ISVGOptions>)Converts Presentation to SVG.

Typedefs

TypedefDescription
GetOutPathCallbackCallback that will be invoked for each Slide, the output path expected to be returned.

Remarks

Convert::AutoByExtension(u"pres.pptx", u"pres.pdf");

See Also