I have one pdf file which i want to convert it to doc, initial part is converting but from 3rd page it is not converting identically.
i am sharing link of my pdf file here. please check this out.
link:https://drive.google.com/file/d/1ClH3OJdRYBP7vA9uJtC-XY6Zc1VJlYLi/view?usp=sharing
I have code :
String filePath = "Stat2_5776ab.pdf";
// Instantiate the Document object
Document document = new Document(filePath);
// Create DocSaveOptions object
DocSaveOptions saveOption = new DocSaveOptions();
// Set the recognition mode as Flow
saveOption.setMode(DocSaveOptions.RecognitionMode.Textbox);
// Set the Horizontal proximity as 2.5
saveOption.setRelativeHorizontalProximity(3.5f);
// Enable the value to recognize bullets during conversion process
saveOption.setRecognizeBullets(true);
// Save the resultant DOC file
document.save("1.doc", saveOption);
Thanks in advance, looking forward for positive response from you all.
Thank you