Convert the PPTX presentation to a set of JPEG images.
Exporting slides as high-quality JPEG 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
};
PresentationToJpegConverter.Process("Color.pptx", "output.jpeg", options);