Generating TIF images

I saw the post here about possible support of creating tif files and I wanted to know if there was any movement on this. I had a quick look through the site but only saw support it the PDF product. Could you tell me if your product could support converting word files (DOC, and DOCX) files in to Tif images.

If it is not currenty supported is there any plans still to support this ?

Hi
Thank you for your interest in Aspose products. You can use the DocumentRenderer class to achieve this. See the following code example.

Document doc = new Document(@"in.doc");
DocumentRenderer renderer = new DocumentRenderer(doc);
Bitmap[] arr = renderer.GetPages(); //get array of pages as bitmap[]
for (int i = 0; i < arr.Length; i++)
{
    arr[i].Save(@"page"+i.ToString()+".jpg");
}

See the following links.
https://docs.aspose.com/words/net/rendering/
https://reference.aspose.com/words/net/aspose.words/document/pagecount/
But note that Aspose.Words.Viewer is currently in beta. Also see FAQ.
Best regards.

Thank you for the code example I was able to get it working right away and seemed to work very well. I will have to hold off any more testing as I need multi page tif support that I hear that you are working on Please let me know if you will rease this version as a beta or if you can give any more hints on when this might be released.

Hi
Thanks for your inquiry. Aspose.Words.Viewer is Beta and under heavy development. The production release of Aspose.Words.Viewer will be available in the ending of 2007 or beginning of 2008.
Best regards.

We are happy to tell you that the new Rendering Engine has replaced the “old Viewer Beta”. The Rendering Engine can print, save as images or draw onto .NET Graphics object any document page.

Please see Aspose.Words documentation to learn more about new features.

Saving to image

In additional, new Rendering engine allows you to convert Word document to PDF directly (without using Aspose.Pdf).

Saving to Pdf

The latest version of Aspose.Words is available for download from downloads section or from NuGet