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

.NET için OTP Dosya Görüntüleyici

Microsoft PowerPoint veya Office Otomasyonu olmadan OTP gibi sunum dosyalarını görüntüleyin

C# Kullanarak OTP Dosyasını Görüntüleme

OTP dosyasını görüntülemek için kullanacağız

Aspose.Slides for .NET

Herhangi bir Görüntüleyici ile kullanılacak C# platformu için zengin özelliklere sahip, güçlü ve kullanımı kolay bir API olan API. Açık

NuGet

paket yöneticisi, ara Aspose.Slides ve yükleyin. Paket Yöneticisi Konsolundan aşağıdaki komutu da kullanabilirsiniz.

Paket Yöneticisi Konsol Komutu


PM> Install-Package Aspose.Slides.NET

OTP'yi C# ile Görüntüleme Adımları

Aspose.Slides, geliştiricilerin OTP dosyasını yalnızca birkaç satır kodla görüntülemesini kolaylaştırır.

  1. Bir Sunum nesnesi oluşturun ve OTP dosyasını yükleyin

  2. Biçimlendirme için bir ResponsiveHtmlController örneği oluşturun

  3. Bir HtmlOptions örneği oluşturun ve HtmlFormatter özelliğini ayarlayın

  4. OTP sunumunu HTML formatında kaydedin

  5. OTP içeriğini varsayılan tarayıcıya yüklemek için ortaya çıkan HTML’nin yolu ile Process.Start’ı arayın

sistem gereksinimleri

Aspose.Slides for .NET tüm büyük işletim sistemlerinde desteklenir. Sadece aşağıdaki ön koşullara sahip olduğunuzdan emin olun.

  • Microsoft Windows veya .NET Framework, .NET Core, Windows Azure, Mono veya Xamarin Platformları ile uyumlu bir işletim sistemi
  • Microsoft Visual Studio gibi geliştirme ortamı
  • Projenizde referans verilen Aspose.Slides for .NET
 

OTP dosyasını görüntülemek için C# örnek kodu


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 Hakkında

    Aspose.Slides API, Microsoft PowerPoint belgelerini okumak, yazmak, değiştirmek ve PDF, XPS, HTML, TIFF, ODP ve diğer çeşitli formatlara dönüştürmek için kullanılabilir. Sıfırdan yeni dosyalar oluşturabilir ve bunları ilgili desteklenen biçimlerde kaydedebilirsiniz. Aspose.Slides, sunumlar, slaytlar ve öğeler oluşturmak, ayrıştırmak veya değiştirmek için bağımsız bir API’dir ve Microsoft veya OpenOffice gibi herhangi bir yazılıma bağlı değildir.

    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 Dosya Biçimi nedir

    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.

    Daha Fazla Oku

    Desteklenen Diğer Görüntüleyici Formatları

    C# kullanarak, One dahil olmak üzere diğer birçok dosya biçimini de görüntüleyebilir.

    ODP (OpenDocument Sunum Formatı)
    POT (Microsoft PowerPoint Şablon Dosyaları)
    POTM (Microsoft PowerPoint Şablon Dosyası)
    POTX (Microsoft PowerPoint Şablonu Sunumu)
    PPS (PowerPoint Slayt Gösterisi)
    PPSM (Makro Etkin Slayt Gösterisi)
    PPSX (PowerPoint Slayt Gösterisi)
    PPT (Microsoft PowerPoint 97-2003)
    PPTM (Makro Etkin Sunum Dosyası)
    PPTX (Açık XML sunum Formatı)