Search
Follow Us
Categories
- Success Stories(157)
Archives
Tag Archives: Convert PDF to images in Java
PDF to HTML and Improved PDF to Image Conversion in Aspose.Pdf for Java 4.3.0
We are pleased to announce the release of Aspose.PDF for Java 4.3.0. This new release provides an exciting feature to convert PDF files to HTML format by using just two lines of code. We’ve previously provided the feature to extract PDF file contents as HTML using the PdfExtractor class’ extractTextAsHTML(..) method but the new approach greatly improves the output fidelity.
// Load source PDF file
com.aspose.pdf.Document pdfDocument = new com.aspose.pdf.Document("c:/source.pdf");
// Save the file into HTML format
pdfDocument.save("c:/output.html", com.aspose.pdf.SaveFormat.Html);
… Continue Reading