If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Aspose.Slides Splitter Micro Application
The Aspose.Slides Splitter tool allows you to split PowerPoint presentations into multiple documents.
Competitive features
- The Aspose.Slides Splitter micro application can be utilized either via the command line or integrated into your C# code using a .NET6 compatible API.
Licensing
Although the Aspose.Slides Splitter application is free, licensing for Aspose.Slides for .NET follows the usual model. Therefore, you can reuse your existing license within the application or evaluate it using Aspose.Slides .NET in trial mode.
System Requirements
- .NET6 on Windows, Linux, and MacOS;
- Installation of the Libgdiplus might be necessary for non-Windows OS
Installation
Please issue the following command to install:
If you’ve already installed the application, update is supported via the command:
Usage
Use from command line:
Use from code:
To add required references to your project please issue command
setting YourProjectFolder to the real value or simply run it from the project folder.
using Aspose.Slides.MicroApps.Split;
var options = new SplitOptions()
{
InputFile = "Presentation.pptx",
OutputFolder = @".\TestData",
SlidesRange = "1,2-4,5"
// You may set path to your Aspose.Slides .NET license file via parameters
//License = "Aspose.Total.lic"
};
var splitter = new SlidesSplitter();
splitter.Split(options);