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

Voeg POTX-bestanden samen met C++

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

Hoe POTX-bestand samen te voegen met C++

Om het POTX-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 POTX-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 POTX-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.
 

POTX-bestanden samenvoegen - C++

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

// 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::Potx);  
 
  • 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 POTX Merger Live Demos

    Merge POTX 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 POTX files.
      It will be merged and concatenated instantly.

    POTX Wat is POTX bestandsformaat

    Files with .POTX extension represent Microsoft PowerPoint template presentations that are created with Microsoft PowerPoint 2007 and above. This format was created to replace the POT file format that is based on the binary file format and is supported with PowerPoint 97-2003. The files 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.

    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)
    PPS (PowerPoint-diavoorstelling)
    PPSM (Diavoorstelling met macro's)
    PPSX (PowerPoint-diavoorstelling)
    PPT (Microsoft PowerPoint 97-2003)
    PPTM (Presentatiebestand met macro's)
    PPTX (Open XML-presentatie-indeling)