C++ API to Render PPSM to WORD
Export PPSM to WORD in C++ applications without any Microsoft PowerPoint or Word dependencies
How to Export PPSM to WORD Using C++
Aspose.Total for C++ is complete package of C++ File Format Automation libraries. By using the rich features of the APIs avaiable in the pacakge, we can easily convert PowerPoint PPSM to Word WORD. In order to perform the conversion, you can first use Aspose.Slides for C++ API to convert PPSM to HTML. After that by using feature-rich Word Processing API Aspose.Words for C++ you can convert the HTML to WORD.C++ API to Convert PPSM to WORD
- Load PPSM file using Presentation class reference
- Render PPSM to HTML by using Save member funciton and set Html as SaveFormat
- Load the converted HTML file by using Document class reference
- Save the document to DOCX format by using Save member fucntion
Get Started with C++ File Format APIs
Install from command line as nuget install Aspose.Total.Cpp
or via Package Manager Console of Visual Studio with Install-Package Aspose.Total.Cpp
.
Alternatively, get the offline MSI installer or DLLs in a ZIP file from downloads .
C++ Code to Convert PPSM to WORD
// Load PPSM file
SharedPtr<Presentation> prs = MakeObject<Presentation>(u"input.ppsm");
// Save presentation in HTML format.
prs->Save(u"htmlOutput.html", Aspose::Slides::Export::SaveFormat::Html);
// load HTML with an instance of Document
System::SharedPtr<Document> doc = System::MakeObject<Document>(u"htmlOutput.html");
// save document in DOCX format
doc->Save(u"output.docx");
PPSM What is PPSM File Format?
Files with PPSM extension represent Macro-enabled Slide Show file format created with Microsoft PowerPoint 2007 or higher. Another similar file format is PPTM which differs in opening with Microsoft PowerPoint in editable format instead of running as Slide Show. When run as slide show, the PPSM file shows the presentation slides with contents intact in the slide show and is in read-only mode by default. PPSM files can still be edited in Microsoft PowerPoint by opening it in PowerPoint.
Read MoreDOCX What is DOCX File Format?
DOCX is a well-known format for Microsoft Word documents. Introduced from 2007 with the release of Microsoft Office 2007, the structure of this new Document format was changed from plain binary to a combination of XML and binary files. Docx files can be opened with Word 2007 and lateral versions but not with the earlier versions of MS Word which support DOC file extensions.
Read More