PNG JPG BMP TIFF OTP
Aspose.Slides  for .NET

OTP-indelingen samenvoegen in C#

Native en hoogwaardige OTP-documentfusie met Aspose.Slides aan de serverzijde voor .NET API’s, zonder het gebruik van software zoals Microsoft of Open Office, Adobe PDF.

Hoe een OTP-bestand samen te voegen met behulp van C#

Om het OTP-bestand samen te voegen, gebruiken we

Aspose.Slides voor .NET

API, een veelzijdige, krachtige en gebruiksvriendelijke API voor documentmanipulatie en samenvoeging voor het C#-platform. Open

NuGet

pakketbeheerder, zoek naar Aspose.Dia’s en installeren. U kunt ook de volgende opdracht gebruiken vanuit de Package Manager Console.

Opdracht


PM> Install-Package Aspose.Slides.NET

Stappen voor het samenvoegen van OTP-bestanden in C#

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

  1. Laad alle OTP-bestanden met het volledige pad.

  2. Maak één document als basisbestand

  3. Roep de relevante methode aan om bestanden één voor één samen te voegen en samen te voegen.

  4. Roep de methode Save() aan en geef de bestandsnaam (volledig pad) en formaat (OTP) door als parameter.

  5. Nu kunt u het OTP-bestand openen en gebruiken in Microsoft Office, Adobe PDF of een ander compatibel programma.

systeem vereisten

Onze API’s worden ondersteund op alle belangrijke platforms en besturingssystemen. Voordat u de onderstaande code uitvoert, moet u ervoor zorgen dat u de volgende vereisten op uw systeem hebt.

  • Microsoft Windows of een compatibel besturingssysteem met .NET Framework, .NET Core, Windows Azure, Mono of Xamarin Platforms
  • Ontwikkelomgeving zoals Microsoft Visual Studio
  • Aspose.Slides voor .NET DLL waarnaar in uw project wordt verwezen - Installeer vanaf NuGet met behulp van de downloadknop hierboven
 

OTP-bestanden samenvoegen - C#

var ps1 = new Presentation("presen1.otp");
    var ps2 = new Presentation("presen2.pptx");
    
    //merged Presentation 
    var mp = new Presentation("template.pptx");
    while (mp.Slides.Count > 0){
        mp.Slides.RemoveAt(0);
    }
    // master slide
    var ms = mp.Masters[0];
    
    // The first OTP presentation is added with its own styles.
    foreach (var slide in ps1.Slides){
        mp.Slides.AddClone(slide);
    }
    
    // The second PPTX presentation is added with template presentation styles using.
    foreach (var slide in ps2.Slides){
        mp.Slides.AddClone(slide, ms, true);
    }
    
    // It is possible to save the merged presentation to any supported format.
    mp.Save("mp.pptx", SaveFormat.Pptx);
    mp.Save("mp.pptx", SaveFormat.Pdf);  

    
 
  • PDF-bestanden online samenvoegen

    PDF samenvoegen in Python

    Over Aspose.Slides voor .NET 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 behulp van C# kan men ook vele andere bestandsindelingen 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)