Java API to Render OFT to JPEG
Export OFT to JPEG by using on premise Java API without using any third party dependencies
How to Render OFT to JPEG Using Java
Email conversion is a powerful feature that Java developers can integrate within any Java J2SE, J2EE, J2ME applications via Aspose.Total for Java . By using two APIs within the package you can convert Email OFT to JPEG without any third party dependencies. Firstly, you can use Email Manipulation API Aspose.Email for Java to convert OFT file format to HTML. Secondly, you can render HTML to JPEG by using Document Processing API Aspose.Words for Java .OFT to JPEG Conversion on Java
- Open OFT file using MailMessage class
- Convert OFT to HTML by using save method
- Load HTML by using Document class
- Save the document to JPEG format using save method and set JPEG as SaveFormat
Get Started with Java File Format APIs
You can easily use Aspose.Total for Java directly from a Maven based project and include Aspose.Words for Java and Aspose.Email for Java in your pom.xml.
Alternatively, you can get a ZIP file from downloads .
Java Code for OFT to JPEG Rendering
MailMessage message = MailMessage.load("sourceFile.oft");
// save OFT as a HTML
message.save("HtmlOutput.html", SaveOptions.getDefaultHtml());
// load HTML with an instance of Document
Document document = new Document("HtmlOutput.html");
// call save method while passing SaveFormat.JPEG
document.save("output.jpeg", SaveFormat.JPEG);
OFT What is OFT File Format?
Files with .oft extension are template files that are created using Microsoft Outlook. The pre-formatted layout set for message templates is then used for sending out emails with common information to save time. Such files can be generated by creating a new email, adding necessary information and then using the Save As Office Template (.oft) dropdown from Microsoft Outlook. Users can open the OFT files by double clicking on it and it will open in associated application on that particular system.
Read MoreJPEG What is JPEG File Format?
A JPEG is a type of image format that is saved using the method of lossy compression. The output image, as result of compression, is a trade-off between storage size and image quality. Users can adjust the compression level to achieve the desired quality level while at the same time reduce the storage size. Image quality is negligibly affected if 10:1 compression is applied to the image. The higher the compression value, the higher the degradation in image quality.
Read More