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

OTP File Viewer för .NET

Visa presentationsfiler som OTP utan Microsoft PowerPoint eller Office Automation

Hur man visar OTP-fil med C#

För att se OTP-filen använder vi

Aspose.Slides för .NET

API som är ett funktionsrikt, kraftfullt och lättanvänt API för C#-plattform för att användas med vilken Viewer som helst. Öppen

NuGet

pakethanterare, sök efter Aspose.Slides och installera. Du kan också använda följande kommando från Package Manager Console.

Pakethanterarens konsolkommando


PM> Install-Package Aspose.Slides.NET

Steg för att visa OTP via C#

Aspose.Slides gör det enkelt för utvecklarna att se OTP-filen med bara några rader kod.

  1. Instantiera ett presentationsobjekt och ladda OTP-filen

  2. Skapa en instans av ResponsiveHtmlController för formatering

  3. Skapa en instans av HtmlOptions och ställ in egenskapen HtmlFormatter

  4. Spara OTP-presentationen i HTML-format

  5. Ring Process.Börja med sökvägen till resulterande HTML för att ladda OTP-innehåll i standardwebbläsaren

Systemkrav

Aspose.Slides för .NET stöds på alla större operativsystem. Se bara till att du har följande förutsättningar.

  • Microsoft Windows eller ett kompatibelt operativsystem med .NET Framework, .NET Core, Windows Azure, Mono eller Xamarin-plattformar
  • Utvecklingsmiljö som Microsoft Visual Studio
  • Aspose.Slides för .NET som refereras till i ditt projekt
 

C# exempelkod för att se OTP-fil


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);
 
  • Om Aspose.Slides för .NET API

    Aspose.Slides API kan användas för att läsa, skriva, manipulera och konvertera Microsoft PowerPoint-dokument till PDF, XPS, HTML, TIFF, ODP och olika andra format. Man kan skapa nya filer från grunden och spara dem i relevanta format som stöds. Aspose.Slides är ett fristående API för att skapa, analysera eller manipulera presentationer, bilder och element och det är inte beroende av någon programvara som Microsoft eller 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 Vad är OTP filformatet

    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.

    Läs mera

    Andra visningsformat som stöds

    Med C# kan man också se många andra filformat inklusive.

    ODP (OpenDocument presentationsformat)
    POT (Microsoft PowerPoint-mallfiler)
    POTM (Microsoft PowerPoint-mallfil)
    POTX (Presentation av Microsoft PowerPoint-mall)
    PPS (PowerPoint-bildspel)
    PPSM (Makroaktiverat bildspel)
    PPSX (PowerPoint-bildspel)
    PPT (Microsoft PowerPoint 97-2003)
    PPTM (Makroaktiverad presentationsfil)
    PPTX (Öppna XML-presentationsformat)