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

OTP-Datei-Viewer für .NET

Zeigen Sie Präsentationsdateien wie OTP ohne Microsoft PowerPoint oder Office Automation an

So zeigen Sie OTP-Dateien mit C# an

Um die OTP-Datei anzuzeigen, verwenden wir

Aspose.Slides für .NET

API, eine funktionsreiche, leistungsstarke und einfach zu verwendende API für die C#-Plattform, die mit jedem Viewer verwendet werden kann. Offen

NuGet

Paketmanager, suche nach Aspose.Folien und installieren. Sie können auch den folgenden Befehl in der Paket-Manager-Konsole verwenden.

Paket-Manager-Konsolenbefehl


PM> Install-Package Aspose.Slides.NET

Schritte zum Anzeigen von OTP über C#

Aspose.Slides macht es den Entwicklern leicht, die OTP-Datei mit nur wenigen Codezeilen anzuzeigen.

  1. Instanziieren Sie ein Präsentationsobjekt und laden Sie die OTP-Datei

  2. Erstellen Sie eine Instanz von ResponsiveHtmlController zum Formatieren

  3. Erstellen Sie eine Instanz von HtmlOptions und legen Sie die HtmlFormatter-Eigenschaft fest

  4. Speichern Sie die OTP-Präsentation im HTML-Format

  5. Rufen Sie Process.Start mit dem Pfad zum resultierenden HTML auf, um OTP-Inhalte im Standardbrowser zu laden

System Anforderungen

Aspose.Slides für .NET wird auf allen wichtigen Betriebssystemen unterstützt. Stellen Sie einfach sicher, dass Sie die folgenden Voraussetzungen erfüllen.

  • Microsoft Windows oder ein kompatibles Betriebssystem mit .NET Framework, .NET Core, Windows Azure, Mono oder Xamarin-Plattformen
  • Entwicklungsumgebung wie Microsoft Visual Studio
  • Aspose.Slides für .NET, auf die in Ihrem Projekt verwiesen wird
 

C#-Beispielcode zum Anzeigen der OTP-Datei


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);
 
  • Informationen zu Aspose.Slides für die .NET-API

    Aspose.Slides API kann zum Lesen, Schreiben, Bearbeiten und Konvertieren von Microsoft PowerPoint-Dokumenten in PDF, XPS, HTML, TIFF, ODP und verschiedene andere Formate verwendet werden. Man kann neue Dateien von Grund auf neu erstellen und diese in den entsprechenden unterstützten Formaten speichern. Aspose.Slides ist eine eigenständige API zum Erstellen, Analysieren oder Bearbeiten von Präsentationen, Folien und Elementen und ist nicht von Software wie Microsoft oder OpenOffice abhängig.

    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 Was ist OTP Dateiformat

    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.

    Weiter lesen

    Andere unterstützte Viewer-Formate

    Mit C# kann man auch viele andere Dateiformate anzeigen, einschließlich.

    ODP (OpenDocument-Präsentationsformat)
    POT (Microsoft PowerPoint-Vorlagendateien)
    POTM (Microsoft PowerPoint-Vorlagendatei)
    POTX (Microsoft PowerPoint-Vorlagenpräsentation)
    PPS (PowerPoint-Diashow)
    PPSM (Makrofähige Diashow)
    PPSX (PowerPoint-Diashow)
    PPT (Microsoft PowerPoint 97-2003)
    PPTM (Makrofähige Präsentationsdatei)
    PPTX (Offenes XML-Präsentationsformat)