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

Voeg PPTM-bestanden samen met C++

PPTM document fusie met behulp van server-side C++ API’s.

Hoe PPTM-bestand samen te voegen met C++

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

PPTM-bestanden samenvoegen - C++

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

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

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

    PPTM Wat is PPTM bestandsformaat

    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.

    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)
    PPSX (PowerPoint-diavoorstelling)
    PPT (Microsoft PowerPoint 97-2003)
    PPTX (Open XML-presentatie-indeling)