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

عارض ملفات OTP لـ .NET

اعرض ملفات العروض التقديمية مثل OTP بدون Microsoft PowerPoint أو Office Automation

كيفية عرض ملف OTP باستخدام C#

من أجل عرض ملف OTP ، سنستخدم

Aspose.Slides for .NET

API وهو واجهة برمجة تطبيقات غنية بالميزات وقوية وسهلة الاستخدام لمنصة C# ليتم استخدامها مع أي عارض. يفتح

NuGet

مدير الحزم ، ابحث عن ** Aspose.Slides ** وتثبيت. يمكنك أيضًا استخدام الأمر التالي من Package Manager Console.

أمر وحدة تحكم مدير الحزم


PM> Install-Package Aspose.Slides.NET

خطوات عرض OTP عبر C#

Aspose.Slides تسهل على المطورين عرض ملف OTP ببضعة سطور من التعليمات البرمجية.

  1. إنشاء كائن عرض تقديمي وتحميل ملف OTP

  2. قم بإنشاء مثيل RespiveHtmlController من أجل التنسيق

  3. قم بإنشاء مثيل HtmlOptions وقم بتعيين خاصية HtmlFormatter

  4. احفظ عرض OTP بصيغة HTML

  5. عملية الاستدعاء: ابدأ بالمسار إلى HTML الناتج لتحميل محتوى OTP في المتصفح الافتراضي

متطلبات النظام

Aspose.Slides for .NET مدعوم على جميع أنظمة التشغيل الرئيسية. فقط تأكد من أن لديك المتطلبات الأساسية التالية.

  • Microsoft Windows أو نظام تشغيل متوافق مع .NET Framework أو .NET Core أو Windows Azure أو Mono أو Xamarin الأنظمة الأساسية
  • بيئة التطوير مثل Microsoft Visual Studio
  • Aspose.Slides for .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 for .NET API

    يمكن استخدام Aspose.Slides API لقراءة وكتابة ومعالجة وتحويل مستندات Microsoft PowerPoint إلى PDF و XPS و HTML و TIFF و ODP وتنسيقات أخرى متنوعة. يمكن للمرء إنشاء ملفات جديدة من البداية وحفظ تلك في التنسيقات المدعومة ذات الصلة. Aspose.Slides هي واجهة برمجة تطبيقات مستقلة لإنشاء العروض التقديمية والشرائح والعناصر أو تحليلها أو معالجتها ، ولا تعتمد على أي برنامج مثل 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 (مايكروسوفت باور بوينت 97-2003)
    PPTM (ملف العرض التقديمي الممكّن بماكرو)
    PPTX (افتح تنسيق عرض XML)