Browse our Products

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.

Aspose.Slides Converter Micro Application

The Aspose.Slides Converter application allows you to convert PowerPoint presentation to multiple file formats.


Competitive features

  • The Aspose.Slides Converter 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 Converter 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.


var options = new ConversionOptions()
{
    InputFile = "test.pptx",
    OutputFolder = @".\TestData",
    Format = ConversionFormat.Pdf,
    // You may set path to your Aspose.Slides .NET license file via parameters	
    //License = "Aspose.Total.lic"
};

var converter = new SlidesConverter();
converter.Convert(options);