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

Voeg PPSX-bestanden samen met C++

PPSX-documentfusie met behulp van server-side C++ API’s.

Hoe PPSX-bestand samen te voegen met C++

Om het PPSX-bestand samen te voegen, gebruiken we

Aspose.Slides voor C++

API, een veelzijdige, krachtige en gebruiksvriendelijke API voor het samenvoegen van documenten voor het C++-platform. Je kunt de nieuwste versie direct downloaden, open gewoon

NuGet

pakketbeheerder, zoek naar Aspose.Slides.Cpp en installeren. U kunt ook de volgende opdracht gebruiken vanuit de Package Manager Console.

Opdracht


PM> Install-Package Aspose.Slides.Cpp

Stappen voor het samenvoegen van PPSX-bestanden in C++

Een basisdocument dat kan worden samengevoegd en samengevoegd met Aspose.Slides for C++ API’s kan worden gedaan met slechts enkele regels code.

  1. Laad beide PPSX-bestanden.

  2. Gebruik de methode get_Slides() om elke dia te doorlopen.

  3. Gebruik de AddClone-functie om samen te voegen met het gewenste bestand.

  4. Gebruik de methode Save() om op het opgegeven pad op te slaan

systeem vereisten

Aspose.Slides voor C++ ondersteunt alle belangrijke platforms en besturingssystemen. Zorg ervoor dat u aan de volgende vereisten voldoet.

  • Microsoft Windows of een compatibel besturingssysteem met C++ Runtime Environment voor Windows 32 bit, Windows 64 bit en Linux 64 bit.
  • Aspose.Slides voor C++ DLL waarnaar in uw project wordt verwezen.
 

PPSX-bestanden samenvoegen - C++

// The path to the documents directory.
const String sourceFilePath1 = u"SourceFile2.ppsx";
const String sourceFilePath2 = u"SourceFile3.ppsx";
const String outputFilePath = u"mergedOutput.ppsx";

// Instantiate Presentation class
SharedPtr<Presentation> presentation1 = MakeObject<Presentation>(sourceFilePath1);
SharedPtr<Presentation> presentation2 = MakeObject<Presentation>(sourceFilePath2);

for (SharedPtr<ISlide> slide : presentation2->get_Slides()){
	// Merge from source to destination 
	presentation1->get_Slides()->AddClone(slide);
}

// Save the presentation
presentation1->Save(outputFilePath, SaveFormat::Ppsx);  
 
  • PDF-bestanden online samenvoegen

    PDF samenvoegen in Python

    Over Aspose.Slides voor C++ API

    Aspose.Slides API kan worden gebruikt om Microsoft PowerPoint-documenten te lezen, schrijven, manipuleren en converteren naar PDF, XPS, HTML, TIFF, ODP en verschillende andere formaten. Men kan vanaf het begin nieuwe bestanden maken en deze opslaan in de relevante ondersteunde formaten. Aspose.Slides is een zelfstandige API voor het maken, parseren of manipuleren van presentaties, dia’s en elementen en is niet afhankelijk van software zoals Microsoft of OpenOffice.

    Online PPSX Merger Live Demos

    Merge PPSX documents right now by visiting our Live Demos website . The live demo has the following benefits

      No need to download Aspose API.
      No need to write any code.
      Just upload your PPSX files.
      It will be merged and concatenated instantly.

    PPSX Wat is PPSX bestandsformaat

    PPSX, Power Point Slide Show, file are created using Microsoft PowerPoint 2007 and above for Slide Show purpose. It is an update to the PPS file format that was supported by Microsoft PowerPoint 97-2003 versions. When a PPSX file is shared with another user and opened, it starts as PowerPoint show unlike PPTX file that opens in editable mode. The sequence of slide show is the same as in the original presentation. All the slides accompany the images, sounds and other embedded media accompany the presentation slides to the PPSX during the slideshow.

    Meer lezen

    Andere ondersteunde samenvoegindelingen

    Met C++ kan men ook vele andere bestandsformaten samenvoegen, waaronder ..

    ODP (OpenDocument-presentatie-indeling)
    OTP (Standaardformaat OpenDocument)
    POT (Microsoft PowerPoint-sjabloonbestanden)
    POTM (Microsoft PowerPoint-sjabloonbestand)
    POTX (Microsoft PowerPoint-sjabloonpresentatie)
    PPS (PowerPoint-diavoorstelling)
    PPSM (Diavoorstelling met macro's)
    PPT (Microsoft PowerPoint 97-2003)
    PPTM (Presentatiebestand met macro's)
    PPTX (Open XML-presentatie-indeling)