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

Penampil Berkas OTP untuk .NET

Lihat file presentasi seperti OTP tanpa Microsoft PowerPoint atau Office Automation

Cara Melihat File OTP Menggunakan C#

Untuk melihat file OTP, kami akan menggunakan

Aspose.Slides untuk .NET

API yang merupakan API yang kaya fitur, kuat, dan mudah digunakan untuk platform C# untuk digunakan dengan Penampil apa pun. Membuka

NuGet

manajer paket, cari Aspose.Slide dan menginstal. Anda juga dapat menggunakan perintah berikut dari Package Manager Console.

Perintah Konsol Manajer Paket


PM> Install-Package Aspose.Slides.NET

Langkah-langkah untuk Melihat OTP melalui C#

Aspose.Slides memudahkan pengembang untuk melihat file OTP hanya dengan beberapa baris kode.

  1. Buat instance objek Presentasi & muat file OTP

  2. Buat instance ResponsiveHtmlController untuk pemformatan

  3. Buat instance HtmlOptions dan setel properti HtmlFormatter

  4. Simpan presentasi OTP dalam format HTML

  5. Proses Panggilan. Mulai dengan jalur ke HTML yang dihasilkan untuk memuat konten OTP di browser default

Persyaratan sistem

Aspose.Slides untuk .NET didukung di semua sistem operasi utama. Pastikan saja Anda memiliki prasyarat berikut.

  • Microsoft Windows atau OS yang kompatibel dengan .NET Framework, .NET Core, Windows Azure, Mono atau Platform Xamarin
  • Lingkungan pengembangan seperti Microsoft Visual Studio
  • Aspose.Slides untuk .NET yang dirujuk dalam proyek Anda
 

C# contoh kode untuk melihat file OTP


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);
 
  • Tentang Aspose.Slides untuk .NET API

    Aspose.Slides API dapat digunakan untuk membaca, menulis, memanipulasi, dan mengonversi dokumen Microsoft PowerPoint ke PDF, XPS, HTML, TIFF, ODP, dan berbagai format lainnya. Seseorang dapat membuat file baru dari awal dan menyimpannya dalam format yang didukung yang relevan. Aspose.Slides adalah API mandiri untuk membuat, mengurai, atau memanipulasi presentasi, slide, dan elemen dan tidak bergantung pada perangkat lunak apa pun seperti Microsoft atau 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 Apa itu Format File OTP

    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.

    Baca lebih lanjut

    Format Penampil yang Didukung Lainnya

    Menggunakan C#, Seseorang juga dapat melihat banyak format file lainnya termasuk.

    ODP (Format Presentasi OpenDocument)
    POT (File Template Microsoft PowerPoint)
    POTM (File Templat Microsoft PowerPoint)
    POTX (Presentasi Template Microsoft PowerPoint)
    PPS (Pertunjukan Slide PowerPoint)
    PPSM (Slide Show yang mendukung makro)
    PPSX (Pertunjukan Slide PowerPoint)
    PPT (Microsoft PowerPoint 97-2003)
    PPTM (File Presentasi berkemampuan makro)
    PPTX (Buka Format presentasi XML)