C#: Online Guide
How To: Word SDK
Convert Word to Tiff
Convert Word to Tiff
  |  
Home ›› XDoc.Word ›› C# Word: Convert Word to Tiff

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


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




Word to Tiff Conversion Overview



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. c# libtiff example, mvc pdf, itextsharp edit existing pdf c#, c# pdfsharp get text from pdf, c# code to convert pdf to tiff, scan qr code with web camera c#. 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.


Related .net document control helps:
asp.net pdf editor component: EdgePDF: ASP.NET PDF Editor Web Control: Online view, annotate, redact, edit, process, convert PDF documents
mvc document viewer: ASP.NET MVC Document Viewer: view, annotate, redact files on ASP.NET MVC web projects
asp.net view text file in browser: ASP.NET Text file viewer in MVC, WebForms: Open, view, annotate, convert txt files in C# ASP.NET
asp.net pdf document viewer c#: ASP.NET PDF Document Viewer in C#: open, display, view, annotate, redact Adobe PDF files online in ASP.NET MVC & WebForm...
asp.net mvc display tiff: ASP.NET Tiff Viewer: view, annotate multipage Tiff images in ASP.NET MVC, WebForms using C# Control
asp.net document viewer example: EdgeDoc:ASP.NET Document Viewer C# Control: Open, view, annotate, redact, convert documents online in C#, VB.NET, AS...
asp.net edit pdf image control: ASP.NET PDF Image Edit Control: online insert, edit PDF images in C#




How to Convert Word to Tiff Using C#



Add references: docx to pdf c# free, c# create pdf from image, c# preview pdf, ghostscript pdf page count c#, convert text file to pdf c#, vb.net open pdf file in new window, c# pdf to text itextsharp.


  RasterEdge.Imaging.Basic.dll


  RasterEdge.XDoc.Office.Inner.Common.dll


  RasterEdge.Imaging.Processing.dll


  RasterEdge.Imaging.Drawing.dll


  RasterEdge.XDoc.Office.Inner.Office03.dll


  RasterEdge.Imaging.Font.dll


  RasterEdge.XDoc.Word.dll


  RasterEdge.XImage.Raster.Core.dll


  RasterEdge.XImage.Raster.dll


  RasterEdge.Imaging.Basic.Codec.dll


  RasterEdge.XDoc.TIFF.dll


Use corresponding namespaces;


  using RasterEdge.Imaging.Basic;


  using RasterEdge.XDoc.Word;


C# programming sample for Word to Tiff image converting. how to edit pdf file in asp.net c#, asp net add text to pdf, asp.net show image from server, excel viewer asp.net c#, asp.net pdf preview, how to show pdf file in asp.net c#, embed pdf in mvc view.




//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");