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

โปรแกรมดูไฟล์ OTP สำหรับ .NET

ดูไฟล์การนำเสนอ เช่น OTP โดยไม่ต้องใช้ Microsoft PowerPoint หรือ Office Automation

วิธีดูไฟล์ OTP โดยใช้ C#

ในการดูไฟล์ OTP เราจะใช้

Aspose.Slides สำหรับ .NET

API ซึ่งเป็น API ที่มีคุณลักษณะหลากหลาย มีประสิทธิภาพ และใช้งานง่ายสำหรับแพลตฟอร์ม C# ที่จะใช้กับโปรแกรมดูใดก็ได้ เปิด

NuGet

package manager ค้นหา สมมติ.สไลด์ และติดตั้ง คุณยังสามารถใช้คำสั่งต่อไปนี้จาก Package Manager Console

คำสั่งคอนโซลตัวจัดการแพ็คเกจ


PM> Install-Package Aspose.Slides.NET

ขั้นตอนในการดู OTP ผ่าน C#

Aspose.Slides ช่วยให้นักพัฒนาสามารถดูไฟล์ OTP ได้ง่ายด้วยโค้ดเพียงไม่กี่บรรทัด

  1. สร้างอินสแตนซ์วัตถุการนำเสนอ & โหลดไฟล์ OTP

  2. สร้างอินสแตนซ์ ResponsiveHtmlController สำหรับการจัดรูปแบบ

  3. สร้างอินสแตนซ์ของ HtmlOptions และตั้งค่าคุณสมบัติ HtmlFormatter

  4. บันทึกการนำเสนอ OTP ในรูปแบบ HTML

  5. กระบวนการเรียก เริ่มต้นด้วยเส้นทางไปยัง HTML ที่เป็นผลลัพธ์เพื่อโหลดเนื้อหา OTP ในเบราว์เซอร์เริ่มต้น

ความต้องการของระบบ

Aspose.Slides สำหรับ .NET รองรับระบบปฏิบัติการหลักทั้งหมด เพียงตรวจสอบให้แน่ใจว่าคุณมีข้อกำหนดเบื้องต้นดังต่อไปนี้

  • Microsoft Windows หรือระบบปฏิบัติการที่เข้ากันได้กับ .NET Framework, .NET Core, Windows Azure, Mono หรือ Xamarin Platforms
  • สภาพแวดล้อมการพัฒนาเช่น Microsoft Visual Studio
  • Aspose.Slides สำหรับ .NET ที่อ้างอิงในโครงการของคุณ
 

รหัสตัวอย่าง C# เพื่อดูไฟล์ 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);
 
  • เกี่ยวกับ Aspose.Slides สำหรับ .NET API

    Aspose.Slides API สามารถใช้อ่าน เขียน จัดการ และแปลงเอกสาร Microsoft PowerPoint เป็น PDF, XPS, HTML, TIFF, ODP และรูปแบบอื่นๆ ได้ หนึ่งสามารถสร้างไฟล์ใหม่ตั้งแต่เริ่มต้นและบันทึกในรูปแบบที่รองรับที่เกี่ยวข้อง Aspose.Slides เป็น API แบบสแตนด์อโลนสำหรับการสร้าง แยกวิเคราะห์ หรือจัดการการนำเสนอ สไลด์ และองค์ประกอบ และไม่ขึ้นกับซอฟต์แวร์ใดๆ เช่น Microsoft หรือ 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 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.

    อ่านเพิ่มเติม

    รูปแบบตัวแสดงที่รองรับอื่น ๆ

    การใช้ C# สามารถดูรูปแบบไฟล์อื่น ๆ ได้มากมายรวมทั้ง

    ODP (รูปแบบการนำเสนอ OpenDocument)
    POT (ไฟล์เทมเพลต Microsoft PowerPoint)
    POTM (ไฟล์เทมเพลต Microsoft PowerPoint)
    POTX (การนำเสนอเทมเพลต Microsoft PowerPoint)
    PPS (สไลด์โชว์ PowerPoint)
    PPSM (สไลด์โชว์ที่เปิดใช้งานมาโคร)
    PPSX (สไลด์โชว์ PowerPoint)
    PPT (Microsoft PowerPoint 97-2003)
    PPTM (ไฟล์นำเสนอที่เปิดใช้งานมาโคร)
    PPTX (เปิดรูปแบบการนำเสนอ XML)