PDF to Docx - Missing Text in Doc

I am converting a PDF to a Word document and some text is missing in the resulting. What can I do to optimize the conversion process?ourfish_sample.pdf (548.5 KB)

Screen Shot 2019-10-31 at 10.13.43 AM.jpg (268.2 KB)

@amani7

Thank you for contacting support.

We are unable to reproduce this issue using below code snippet with Aspose.PDF for .NET 19.10. Generated DOCX file has been attached for your kind reference.

ourfish_sample_19.10.zip

Document pdfDocument = new Document(dataDir + "ourfish_sample.pdf");
DocSaveOptions saveOptions = new DocSaveOptions();
saveOptions.Mode = DocSaveOptions.RecognitionMode.Flow;
saveOptions.Format = DocSaveOptions.DocFormat.DocX;
pdfDocument.Save(dataDir + "ourfish_sample_19.10.docx", saveOptions);