Convert Word Document to TIFF

Contents
[ ]

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: