Aspose.Slides.WebExtensions
21.4.0
dotnet add package Aspose.Slides.WebExtensions --version 21.4.0
NuGet\Install-Package Aspose.Slides.WebExtensions -Version 21.4.0
<PackageReference Include="Aspose.Slides.WebExtensions" Version="21.4.0" />
paket add Aspose.Slides.WebExtensions --version 21.4.0
#r "nuget: Aspose.Slides.WebExtensions, 21.4.0"
// Install Aspose.Slides.WebExtensions as a Cake Addin #addin nuget:?package=Aspose.Slides.WebExtensions&version=21.4.0 // Install Aspose.Slides.WebExtensions as a Cake Tool #tool nuget:?package=Aspose.Slides.WebExtensions&version=21.4.0
HTML Export System for Presentations via .NET API
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License
Aspose.Slides WebExtentions is an HTML export system that enables you to export any MS PowerPoint presentation as a highly customizable HTML/CSS/JS web document.
WebExtension Features
- Apply custom
CSS
styles to customize the output. - Customized output via
DOM
manipulation. - Support for the
JavaScript
/CSS
animated slide PowerPoint transitions. - Individual result does not require you to deal with other user's markup/parameters artifacts.
Get Started
Let's give Aspose.Slides.WebExtensions a try! Simply execute Install-Package Aspose.Slides.WebExtensions
from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.Slides.WebExtensions and want to upgrade the version, please execute Update-Package Aspose.Slides.WebExtensions
to get the latest version.
Export PPTX to a Single Page Web Document using C# Code
using System;
using System.IO;
using Aspose.Slides;
using Aspose.Slides.Export.Web;
using Aspose.Slides.WebExtensions;
namespace SinglePageApp
{
class Program
{
static void Main(string[] args)
{
using (Presentation pres = new Presentation("demo-transitions.pptx"))
{
WebDocument document = pres.ToSinglePageWebDocument("templates\\single-page",
@"single-page-output");
document.Save();
}
Console.WriteLine("HTML export is complete...");
}
}
}
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net46 is compatible. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.6
- Aspose.Slides.NET (= 21.3.0)
- Microsoft.AspNet.Razor (= 3.0.0)
- MimeTypesMap (= 1.0.8)
- RazorEngine (= 3.10.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.