Presentation to TIFF Converter for .NET

Convert the PPTX presentation to a set of TIFF images.

Convert PPTX to TIFF

Exporting slides as high-quality TIFF 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 TiffConverterOptions
  {
      ImageWidth = 960,
      ImageHeight = 720
  };
  
  PresentationToTiffConverter.Process("Color.pptx", "output.tiff", options);