Hello!
To convert a PDF file to EXCEL format, I use the following code:
Document doc = new Document(“example.pdf”);
ExcelSaveOptions options = new ExcelSaveOptions();
options.setFormat(ExcelSaveOptions.ExcelFormat.XLSX);
doc.save(“workbook.xlsx”, options);
I write in Java
But the issue is that only the first four pages are read, and six should be read. I tried with different files but the result is the same - four pages. In addition, the lines that are displayed in the EXCEL file do not match the lines in the PDF file after conversion.
To make it clearer, I can send an example file.