HTML JSON XML SVG GIF
OFT

Java API to Render OFT to GIF

Export OFT to GIF by using on premise Java API without using any third party dependencies

OFT Conversion via Python OFT Conversion via C# .NET OFT Conversion via C++ OFT Conversion in Android Apps

How to Render OFT to GIF 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 GIF 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 GIF by using Document Processing API Aspose.Words for Java .

OFT to GIF Conversion on Java

  1. Open OFT file using MailMessage class
  2. Convert OFT to HTML by using save method
  3. Load HTML by using Document class
  4. Save the document to GIF format using save method and set GIF 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 GIF 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.GIF
document.save("output.gif", SaveFormat.GIF);   

Explore OFT Conversion Options with Java

Convert OFT to BMP (Bitmap Image File)
Convert OFT to DOC (Microsoft Word Binary Format)
Convert OFT to DOCM (Microsoft Word 2007 Marco File)
Convert OFT to DOCX (Office 2007+ Word Document)
Convert OFT to DOT (Microsoft Word Template Files)
Convert OFT to DOTM (Microsoft Word 2007+ Template File)
Convert OFT to DOTX (Microsoft Word Template File)
Convert OFT to EMF (Enhanced Metafile Format)
Convert OFT to EPUB (Open eBook File)
Convert OFT to FLATOPC (Microsoft Word 2003 WordprocessingML)
Convert OFT to IMAGE (Image Files)
Convert OFT to JPEG (Joint Photographic Expert Group)
Convert OFT to MD (Markdown Language)
Convert OFT to ODT (OpenDocument Text File Format)
Convert OFT to OTT (OpenDocument Template)
Convert OFT to PCL (Printer Command Language)
Convert OFT to PDF (Portable Document Format)
Convert OFT to PNG (Portable Network Graphic)
Convert OFT to PS (PostScript File)
Convert OFT to RTF (Rich Text Format)
Convert OFT to SVG (Scalar Vector Graphics)
Convert OFT to TIFF (Tagged Image File Format)
Convert OFT to WORD (WordProcessing File Formats)
Convert OFT to WORDML (Microsoft Word 2003 WordprocessingML)
Convert OFT to XPS (XML Paper Specifications)