XDoc.PowerPoint
Features
Tech Specs
How-to C#
Pricing

C# PowerPoint Library
C# PowerPoint - Convert PowerPoint to TIFF in C#.NET


Online C# Tutorial for How to Convert PowerPoint File to Tiff Image File



RasterEdge C#.NET PowerPoint to TIFF converting library control (XDoc.PowerPoint) is a multifunctional PowerPoint document converting tool, which can perform high-fidelity PowerPoint to TIFF conversion in an easy way. Using this .NET PowerPoint to TIFF conversion control, C# developers can render and convert PowerPoint document to TIFF image file with no loss in original file quality. Both single page and multi-page Tiff image files are acceptable.


How to Microsoft Office PowerPoint to multi-page TIFF file using C#?

  1. Download XDoc.PowerPoint C# PPTX document library
  2. Install C# PPTX library to Microsoft PowerPoint to TIFF in .NET applications
  3. Step by Step Tutorial












How to Convert PowerPoint to Tiff Using C#

C# programming sample for PowerPoint to Tiff image converting.

// Load a PowerPoint file.
String inputFilePath = Program.RootPath + "\\" + "1.pptx";
PPTXDocument doc = new PPTXDocument(inputFilePath);

// Convert and output to a TIFF file.
String outputFilePath1 = inputFilePath + @".tif";
doc.ConvertToDocument(DocumentType.TIFF, outputFilePath1);