Converting Outlook Message File (MSG) to TIFF Image
Contents
[
Hide
]
In this article, we show you how to convert an Outlook MSG file to a TIFF image.
- First, read an MSG file and convert it to MHTML format with Aspose.Email for .NET. Use the Aspose.Email.MailMessage class to load the message file.
- After loading the file, call the MailMessage.Save() method and save it to stream in MHTML format.
- Use Aspose.Words for .NET to convert the MHTML stream to TIFF. Use the Aspose.Words.Document class to load the MHTML stream.
- Finally, call the Document.Save() method to save the MHTML document to TIFF.
If the document contains multiple pages a multi-page TIFF file is generated. The code snippets below show how to convert Outlook Message File (MSG) to TIFF Image.