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

OTP-bestanden samenvoegen met C++

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

Hoe een OTP-bestand samen te voegen met C++

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

OTP-bestanden samenvoegen - C++

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

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

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

    OTP Wat is OTP bestandsformaat

    Files with .OTP extension represent presentation template files created by applications in OASIS OpenDocument standard format. The contents of such a file include presentation information in the form of slides with text, images, shapes, multimedia content, transition effects and other slide elements. These template files are used for creating new presentations quickly based on the styling information stored in the template itself. OTP files can be created and saved with several different applications such as Impress that comes with OpenOffice suite and Microsoft PowerPoint. The OTP file format is similar to Microsoft PowerPoint template files .POT and .POTX.

    Meer lezen

    Andere ondersteunde samenvoegindelingen

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

    ODP (OpenDocument-presentatie-indeling)
    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)
    PPTM (Presentatiebestand met macro's)
    PPTX (Open XML-presentatie-indeling)