PNG JPG BMP TIFF PPS
Aspose.Slides for C++

Merge PPS Files using C++

Use Aspose.Slides for C++ to merge PPS files with server-side C++ APIs.

Merge PPS Files Using C++

To merge PPS files, use Aspose.Slides for C++ , a C++ API for working with presentation files. Install the latest package from NuGet or use the Package Manager Console command below.

Command

PM> Install-Package Aspose.Slides.Cpp

Merge PPS Files - C++

auto destinationPresentation = MakeObject<Presentation>(u"first.pps");
auto sourcePresentation = MakeObject<Presentation>(u"second.pps");

for (auto&& slide : sourcePresentation->get_Slides())
{
    destinationPresentation->get_Slides()->AddClone(slide);
}

destinationPresentation->Save(u"merged.pps", SaveFormat::Pps);
sourcePresentation->Dispose();
destinationPresentation->Dispose();
 

Steps for Merging PPS Files in C++

Merge PPS files with Aspose.Slides for C++ by cloning slides from one presentation into another.

  1. Load the destination and source PPS files with the Presentation class.

  2. Iterate through the source slides with get_Slides.

  3. Add each slide to the destination presentation with AddClone.

  4. Save the merged file with SaveFormat::Pps.

System Requirements

Aspose.Slides for C++ is supported on all major platforms and operating systems. Please make sure that you have the following prerequisites.

  • Microsoft Windows, Linux, macOS, or another compatible OS with the supported C++ runtime.
  • Aspose.Slides for C++ library referenced in your project.

Merge Files Online

Merge presentations, documents, and images online.

About Aspose.Slides for C++ API

The Aspose.Slides API can read, write, manipulate, and convert Microsoft PowerPoint presentations to PDF, XPS, HTML, TIFF, ODP, and other supported formats. You can create presentations from scratch and save them in a supported output format. Aspose.Slides is a standalone API for creating, parsing, and manipulating presentations, slides, and their elements; it does not require Microsoft PowerPoint or OpenOffice.

Online PPS Merger Live Demos

PPS What is PPS File Format?

PPS (PowerPoint Slide Show) is the binary slide show format used by PowerPoint 97–2003. PPSX is the newer slide show format based on the Office Open XML standard. Current versions of PowerPoint can open PPS files and can still save presentations in PPS format. When opened normally, a PPS file starts in slide show mode, whereas a PPT file opens in editing mode.

Read More

Other Supported Merging Formats

You can also merge presentations in other formats.

ODP (OpenDocument presentation)
OTP (OpenDocument presentation template)
POT (PowerPoint template)
POTM (Macro-enabled PowerPoint template)
POTX (PowerPoint Open XML template)
PPSM (Macro-enabled PowerPoint slide show)
PPSX (PowerPoint Open XML slide show)
PPT (PowerPoint presentation)
PPTM (Macro-enabled PowerPoint presentation)
PPTX (PowerPoint Open XML presentation)