HTML JPG PDF XML OTP
Aspose.Slides  for .NET
OTP

OTP-bestandsviewer voor .NET

Bekijk presentatiebestanden zoals OTP zonder Microsoft PowerPoint of Office Automation

Hoe OTP-bestand te bekijken met C#

Om het OTP-bestand te bekijken, gebruiken we

Aspose.Slides voor .NET

API, een veelzijdige, krachtige en gebruiksvriendelijke API voor het C#-platform die met elke viewer kan worden gebruikt. Open

NuGet

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

Pakketbeheer Console-opdracht


PM> Install-Package Aspose.Slides.NET

Stappen om OTP via C# te bekijken

Aspose.Slides maakt het de ontwikkelaars gemakkelijk om het OTP-bestand te bekijken met slechts enkele regels code.

  1. Instantieer een presentatie-object en laad het OTP-bestand

  2. Maak een instantie van ResponsiveHtmlController voor opmaak

  3. Maak een instantie van HtmlOptions en stel de eigenschap HtmlFormatter in

  4. Sla de OTP-presentatie op in HTML-indeling

  5. Roep Process.Start aan met pad naar resulterende HTML om OTP-inhoud in standaardbrowser te laden

systeem vereisten

Aspose.Slides voor .NET wordt ondersteund op alle belangrijke besturingssystemen. Zorg ervoor dat u aan de volgende vereisten voldoet.

  • 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 waarnaar in uw project wordt verwezen
 

C# voorbeeldcode om OTP-bestand te bekijken


string output = System.IO.Path.GetTempPath() + Guid.NewGuid().ToString() + ".html";

// instantiate a Presentation object & load the OTP file
using (var presentation = new Aspose.Slides.Presentation("templateotp"))
{
    // create HTML export controller
    var controller = new Aspose.Slides.Export.ResponsiveHtmlController();
    // create an instance of HtmlOptions and set HtmlFormatter property
    var htmlOptions = new Aspose.Slides.Export.HtmlOptions 
    { 
        HtmlFormatter = Aspose.Slides.Export.HtmlFormatter.CreateCustomFormatter(controller) 
    };

    // save the presentation in HTML
    presentation.Save(output, Aspose.Slides.Export.SaveFormat.Html, htmlOptions);
}
// load HTML to view the presentation content
System.Diagnostics.Process.Start(output);
 
  • 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.

    Free App to View OTP

    Check our live demos to View OTP with following benefits.

      No need to download or setup anything
      No need to write or compile code
      Just upload OTP file and hit the "View" button
      Download OTP file from the link, if required

    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 viewerformaten

    Met behulp van C# kan men ook vele andere bestandsindelingen bekijken, 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)