C# TIFF Image Library
Conversion from Word, Excel, PPT to TIFF
Learn How to Change MS Word, Excel, and PowerPoint to TIFF Image File in C#
Overview for MS Office to TIFF Conversion
In order to convert Microsoft Word, Excel, and PowerPoint to Tiff image file Visual C#.NET project, you need to use our XDoc.Tiff for .NET SDK. It is quiet easy to integrate this SDK into your C# program, by simply adding project references.
This page includes three pieces of C# programming demos, please directly use them in your project for fast file conversion.
- C# programming demo: conversion from Word to Tiff
- C# programming demo: conversion from Excel to Tiff
- C# programming demo: conversion from PowerPoint to Tiff
C# Project: Import TIFF dlls to test Project/Solution
In order to run the following conversion code, please do as follows:
C# Demo for Converting Word to TIFF
This demo shows how to load a sample Word (.docx) document and convert it to Tiff image file
// Load your Word (.docx) document.
DOCXDocument doc = new DOCXDocument(@"demo.docx");
if (null == doc)
throw new Exception("Fail to load Word Document");
// Convert Word to Tiff.
doc.ConvertToDocument(DocumentType.TIFF, @"output.tif");
C# Demo for Converting Excel to TIFF
Now, you may load an Excel (.xlsx) file and convert it to Tiff image in your C# project.
// Load your Excel (.xlsx) document.
XLSXDocument doc = new XLSXDocument(@"demo.xlsx");
if (null == doc)
throw new Exception("Fail to load Excel Document");
// Convert Excel to Tiff.
doc.ConvertToDocument(DocumentType.TIFF, @"output.tif");
C# Demo for Converting PowerPoint to TIFF
This demo code is for rendering and changing PowerPoint (.pptx) document to Tiff image.
// Load your PPT (.pptx) document.
PPTXDocument doc = new PPTXDocument(@"demo.pptx");
if (null == doc)
throw new Exception("Fail to load PowerPoint Document");
// Convert PPT to Tiff.
doc.ConvertToDocument(DocumentType.TIFF, @"output.tif");
Common Asked Questions
How to convert a Word to TIFF?
You can use a free online converter or install free or paid conversion software to convert Microsoft Word document to multi-page tiff file.
If you need build an online docx to tiff converter or desktop version, you can use RasterEdge XDoc.TIFF C# library. It provides
comprehensive API to convert whole Word document or selected Word pages' content to tiff file in C# ASP.NET Core, WinForms web and desktop application.
How to convert Word to high resolution TIFF image?
You can use a virtual printer installed on your computer to convert docx file to tiff with high resolution images.
You can also build your own word to tiff converter with high resolution printing using XDoc.TIFF C# library using Visual Studio IDE.
How do I print an Excel file as a TIFF?
Same as convert Word to TIFF, you can also convert Office Excel file to TIFF file using online document converter or installed freewares.
XDoc.TIFF C# library also supports converting xlsx to TIFF files using C#.
How to export Excel graph as TIFF?
You can export one selected Excel graph or multiple graph to a TIFF file by copying them to an other Office application, such as PowerPoint, then
save the images to TIFF image file. Using C# TIFF library, you can create a new TIFF image file with one or multiple graphs from Excel using C# programming.
How to convert PowerPoint to TIFF?
Using C# TIFF library, you can convert a single PPTX slide or selected multiple sides as images, and export them to a multi-page TIFF image file in C# application.
How to save PPT as a high quality TIFF image?
To export PPT slides to high quality images in a TIFF file, you need apply high resolution settings when converting PowerPoint slides to TIFF pages using C#.
How to convert PPT to TIFF 300 dpi?
Using C# TIFF library, you can apply image resolution settings in 300 dpi when you are converting PowerPoint slides to TIFF images in C#
ASP.NET Core, MVC, WinForms and WPF applications.