C++ API to Render POT to WORD
Export POT to WORD in C++ applications without any Microsoft PowerPoint or Word dependencies
How to Export POT 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 POT to Word WORD. In order to perform the conversion, you can first use Aspose.Slides for C++ API to convert POT 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 POT to WORD
- Load POT file using Presentation class reference
- Render POT 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 POT to WORD
// Load POT file
SharedPtr<Presentation> prs = MakeObject<Presentation>(u"input.pot");
// 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");
POT What is POT File Format?
Files with .POT extension represent Microsoft PowerPoint template files created by PowerPoint 97-2003 versions. Files created with these versions of Microsoft PowerPoint are in binary format as compared to those created in Office OpenXML file formats using the higher versions of PowerPoint. The files, hence, generated can be used to create presentations that have same layout and other settings required to be applied to new files. These settings can include styles, backgrounds, colour palette, fonts and defaults. Such files are generated in order to create ready-to-use template files for official use.
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