I am trying to convert a PDF document to HTML . The HTML page looks smaller (in half of the screen) in browser. Is there any way can zoom-in the page by embedding some CSS from java code.
Please find the attached PDF and converted HTML for your reference.
Also please suggest how to remove Page number(or Footer) from the converted HTML.
Sample Code -
// Managing Images folder inside PDF
Document pdfDoc = new Document("C:\\Users\\pushk\\TestDir\\testReportPdf.pdf");
HtmlSaveOptions htmlSaveOptions = new HtmlSaveOptions();
htmlSaveOptions.setSplitIntoPages(true);
htmlSaveOptions.setFontSavingMode( FontSavingModes.AlwaysSaveAsTTF);
htmlSaveOptions.setSpecialFolderForSvgImages( "C:\\Users\\pushk\\TestDir\\webLayout\\ImageSavePath");
htmlSaveOptions.setSpecialFolderForAllImages("C:\\Users\\pushk\\TestDir\\webLayout\\ImageSavePath");
// Using Java PDF to HTML export via Save method
pdfDoc.save("C:\\Users\\pushk\\TestDir\\webLayout\\Generated_out_Java.html",SaveFormat.Html);
testReportPdf.pdf (291.3 KB)
webLayout.zip (354.7 KB)
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.
Issue ID(s): PDFNET-53513
You can obtain Paid Support services if you need support on a priority basis, along with the direct access to our Paid Support management team.
1 Like