Hi Support Team,
Currently, I’m using temp licence before purchase licence for JAVA.
This is my code:
Document convertPDFDocumentToWord = new
Document(“LetterTemplate_83807.pdf”);
DocSaveOptions docSaveOptions = new DocSaveOptions();
docSaveOptions.setFormat(DocSaveOptions.DocFormat.DocX);
docSaveOptions.setMode(DocSaveOptions.RecognitionMode.Flow);
docSaveOptions.setRelativeHorizontalProximity(2.5f);
docSaveOptions.setRecognizeBullets(true);
convertPDFDocumentToWord.save("output.docx", docSaveOptions);
The output having tables without proper borders . When editing tables texts are overlapping with other columns
I am attaching input pdf and output docx.
I am using aspose-pdf 22.11 version and java 8.
LetterTemplate_83807.pdf (29.5 KB)
output.docx (29.9 KB)