.NET için PPSX Dosya Görüntüleyici
Microsoft PowerPoint veya Office Otomasyonu olmadan PPSX gibi sunum dosyalarını görüntüleyin
C# Kullanarak PPSX Dosyasını Görüntüleme
PPSX dosyasını görüntülemek için kullanacağız
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
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
PPSX'i C# ile Görüntüleme Adımları
Aspose.Slides, geliştiricilerin sadece birkaç satır kodla PPSX dosyasını görüntülemesini kolaylaştırır.
Bir Sunum nesnesi oluşturun ve PPSX dosyasını yükleyin
Biçimlendirme için bir ResponsiveHtmlController örneği oluşturun
Bir HtmlOptions örneği oluşturun ve HtmlFormatter özelliğini ayarlayın
PPSX sunumunu HTML formatında kaydedin
PPSX içeriğini varsayılan tarayıcıya yüklemek için ortaya çıkan HTML’nin yolu ile Process.Start’ı çağırı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
PPSX 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 PPSX file
using (var presentation = new Aspose.Slides.Presentation("templateppsx"))
{
// 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 PPSX
Check our live demos to View PPSX with following benefits.
PPSX PPSX Dosya Biçimi nedir
PPSX, Power Point Slide Show, file are created using Microsoft PowerPoint 2007 and above for Slide Show purpose. It is an update to the PPS file format that was supported by Microsoft PowerPoint 97-2003 versions. When a PPSX file is shared with another user and opened, it starts as PowerPoint show unlike PPTX file that opens in editable mode. The sequence of slide show is the same as in the original presentation. All the slides accompany the images, sounds and other embedded media accompany the presentation slides to the PPSX during the slideshow.
Daha Fazla OkuDesteklenen 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.