Convert Word Document to TIFF
Contents
[
Hide
]
To convert a Word document to TIFF, simply invoke the Save method and specify a file name with the “.TIFF” extension.
See more details in the Save a Document documentation section.
The following code example shows how to convert document pages from DOC to TIFF:
string fileDir = "../../data/";
// open the document
Document doc = new Document(fileDir + "test.doc");
// Save the document as multipage TIFF.
doc.Save("TestFile Out.tiff");
See also: