Presentation to PNG Converter for .NET

Convert the PPTX presentation to a set of PNG images.

Convert PPTX to PNG

Exporting slides as high-quality PNG images is useful for creating slide previews, embedding them in reports, or sharing individual slide images. Slidize.Plugins allows you to control the resolution, size, and scale of the images produced. This ensures that your output fits the exact dimensions and quality required for your project.

  using Slidize;

  var options = new ImageConverterOptions
  {
    ImageWidth = 960,
    ImageHeight = 720
  };

  PresentationToPngConverter.Process("Color.pptx", "output.png", options);