Render XSLFO to PPTM via .NET
.NET API to Export XSLFO to PPTM on Windows, macOS, and Linux without using Microsoft® PowerPoint
Using a package of powerful File Format Automation APIs Aspose.Total for .NET you can easily Render XSLFO to PPTM in two simple steps. By using PDF Processing API Aspose.PDF for .NET , you can transform XSLFO file format to PPTX. After that, by using Presentation Processing API Aspose.Slides for .NET , you can convert PPTX to PPTM.
.NET API to Convert XSLFO to PPTM
- Open XSLFO file using Document class
- Convert XSLFO to PPTX by using Save method
- Load PPTX file by using Presentation class
- Save the document to PPTM format using
Save
method and set
Pptm
as SaveFormat
Get Started with .NET File Format APIs
Install from command line as nuget install Aspose.Total
or via Package Manager Console of Visual Studio with Install-Package Aspose.Total
.
Alternatively, get the offline MSI installer or DLLs in a ZIP file from downloads .
Document document = new Document("input.xslfo");
// save XSLFO as a PPTX
document.Save("PptxOutput.pptx", SaveFormat.Pptx);
// load PPTX with an instance of Presentation
Presentation presentation = new Presentation("PptxOutput.pptx");
// call save method while passing SaveFormat.Pptm
presentation.Save("output.pptm", SaveFormat.Pptm);
Get XMP Metadata from XSLFO File via .NET
While converting XSLFO to PPTM, you might need extra XMP metadata information to prioritize your batch conversion process. For example you can get and sort your conversion documents based on creation date and process the documents accordingly. Aspose.PDF for .NET allows you to access a XSLFO file’s XMP metadata. To get a XSLFO file’s metadata, you can create a Document object and open the input XSLFO file. After that, you can get the file’s metadata using the Metadata property.
Document doc = new Document("input.xslfo");
// get XSLFO XMP properties
Console.WriteLine(doc.Metadata["xmp:CreateDate"]);
Console.WriteLine(doc.Metadata["xmp:Nickname"]);
Console.WriteLine(doc.Metadata["xmp:CustomProperty"]);
Create Read Only PPTM File via .NET
By using Aspose.Slides for .NET API, you can further enhance the features of your conversion application. One of the feature can be to create your output file read only to increase security. The API allows you to set your PPTM file to Read-Only, which means users (after they open the presentation) see the Read-Only recommendation.
Presentation presentation = new Presentation("PptxOutput.pptx");
// make PPTM read only
presentation.ProtectionManager.ReadOnlyRecommended = true;
// call save method while passing SaveFormat.Pptm
presentation.Save("output.pptm", SaveFormat.Pptm);
Other Conversion Options
XSLFO What is XSLFO File Format?
XSL-FO (XSL Formatting Objects) is a powerful stylesheet language for formatting XML documents. The semantics of the bounded form of paper and print is expressed by XSL-FO when the dimensions are fixed. In contrast to HTML, which represents the semantics of the unbounded form of a browser window with variable dimensions. The XML documents formatted by XSL-FO are mostly used to generate PDF files. XSL (Extensible Stylesheet Language) is a set of feature-complete W3C technologies intended to design for formatting and exchanging XML documents and XSL-FO part of this language. XSLT and XPath are also other parts of XSL.
Read MorePPTM What is PPTM File Format?
Files with PPTM extension are Macro-enabled Presentation files that are created with Microsoft PowerPoint 2007 or higher versions. They are similar to PPTX files with the difference that the lateral can’t execute macros though they can contain macros. PPTM files can be edited by opening them in Microsoft PowerPoint and updating the contents. Another similar format is PPSM but it is read-only by default and starts the slideshow when opened. PPTM, like PPTX, contains slides for different presentation elements like text, images, videos, graphs and other related material.
Read More