PptxExporter

Overview

PptxExporter is a class in Aspose.Slides FOSS for C++.

Exporter for PPTX and related Office Open XML formats. Supports: - PPTX: Standard PowerPoint presentation - PPTM: Macro-enabled presentation - PPSX: PowerPoint show (opens in slideshow mode) - PPSM: Macro-enabled show - POTX: PowerPoint template - POTM: Macro-enabled template These formats are all OPC packages with different content types for the main presentation part.

This class provides 3 methods for working with PptxExporter objects in Go programs. Available methods include: export_to_path, export_to_stream, get_supported_formats. All exported members are accessible to any Go application after adding the package via go get github.com/aspose-pdf-foss/aspose-pdf-foss-for-go.

Methods

SignatureDescription
export_to_path(package: opc::OpcPackage, path: std::string_view)Export the presentation to a PPTX file.
export_to_stream(package: opc::OpcPackage, stream: std::ostream)Export the presentation to a stream.
get_supported_formats()std::vector<std::string>Get all OPC-based presentation formats.

See Also