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

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


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





RasterEdge C#.NET Word to TIFF converting library control (XDoc.Word) is a multifunctional Word document converting tool, which can perform high-fidelity Word to TIFF conversion in an easy way. Using this .NET Word to TIFF conversion control, C# developers can render and convert Word 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 Convert Word to Tiff Using C#



C# programming sample for Word to Tiff image converting.

//load word document
DOCXDocument doc = new DOCXDocument(@"C:\demoInput\demo.docx");

//convert to tiff with default settings
doc.ConvertToDocument(DocumentType.TIFF, @"C:\demoOutput\demo.tif");

//convert to tiff with compression(Group3Fax)
doc.ConvertToDocument(DocumentType.TIFF, @"C:\demoOutput\demoCompression.tif", ImageCompress.Group3Fax);

//convert to tiff with resolution(192)
doc.ConvertToDocument(DocumentType.TIFF, 192, @"C:\demoOutput\demoResolution.tif");