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

Trình xem tệp OTP cho .NET

Xem các tệp bản trình bày, chẳng hạn như OTP mà không cần Microsoft PowerPoint hoặc Office Automation

Cách xem tệp OTP bằng C#

Để xem tệp OTP, chúng tôi sẽ sử dụng

Aspose.Slides dành cho .NET

API là một API giàu tính năng, mạnh mẽ và dễ sử dụng cho nền tảng C# để được sử dụng với bất kỳ Trình xem nào. Mở

NuGet

quản lý gói, tìm kiếm ** Aspose.Slides ** và cài đặt. Bạn cũng có thể sử dụng lệnh sau từ Bảng điều khiển Trình quản lý Gói.

Lệnh Bảng điều khiển Trình quản lý Gói


PM> Install-Package Aspose.Slides.NET

Các bước để xem OTP qua C#

Aspose.Slides giúp các nhà phát triển dễ dàng xem tệp OTP chỉ với vài dòng mã.

  1. Khởi tạo đối tượng Bản trình bày và tải tệp OTP

  2. Tạo một phiên bản của ResponsiveHtmlController để định dạng

  3. Tạo một phiên bản của HtmlOptions và đặt thuộc tính HtmlFormatter

  4. Lưu bản trình bày OTP ở định dạng HTML

  5. Tiến trình cuộc gọi. Bắt đầu với đường dẫn đến HTML kết quả để tải nội dung OTP trong trình duyệt mặc định

yêu cầu hệ thống

Aspose.Slides cho .NET được hỗ trợ trên tất cả các hệ điều hành chính. Chỉ cần đảm bảo rằng bạn có các điều kiện tiên quyết sau.

  • Microsoft Windows hoặc hệ điều hành tương thích với .NET Framework, .NET Core, Windows Azure, Mono hoặc Xamarin Platforms
  • Môi trường phát triển như Microsoft Visual Studio
  • Aspose.Slides cho .NET được tham chiếu trong dự án của bạn
 

Mã ví dụ C# để xem tệp 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);
 
  • Giới thiệu về Aspose.Slides cho .NET API

    API Aspose.Slides có thể được sử dụng để đọc, viết, thao tác và chuyển đổi tài liệu Microsoft PowerPoint sang PDF, XPS, HTML, TIFF, ODP và nhiều định dạng khác. Người ta có thể tạo các tệp mới từ đầu và lưu chúng ở các định dạng được hỗ trợ có liên quan. Aspose.Slides là một API độc lập để tạo, phân tích cú pháp hoặc thao tác với các bản trình bày, trang trình bày và các phần tử và nó không phụ thuộc vào bất kỳ phần mềm nào như Microsoft hoặc 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 Những gì là OTP Tập Tin Định Dạng

    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.

    Đọc Thêm

    Các định dạng trình xem được hỗ trợ khác

    Sử dụng C#, Người ta cũng có thể xem nhiều định dạng tệp khác bao gồm.

    ODP (Định dạng bản trình bày OpenDocument)
    POT (Tệp mẫu Microsoft PowerPoint)
    POTM (Tệp Mẫu Microsoft PowerPoint)
    POTX (Bản trình bày mẫu Microsoft PowerPoint)
    PPS (Trình chiếu PowerPoint)
    PPSM (Trình chiếu hỗ trợ macro)
    PPSX (Trình chiếu PowerPoint)
    PPT (Microsoft PowerPoint 97-2003)
    PPTM (Tệp trình bày hỗ trợ macro)
    PPTX (Định dạng bản trình bày XML mở)