PDF to DOCX conversion inaccuracy

Hi,

I tried the Aspo.PDF (online tool) and the result is a bit better but still not correct.
Any tips would be helpful.

Many thanks
BR
ISA

Converted by Aspose.PDF Online.docx (185.8 KB)
Source File.pdf (29.4 KB)

@itahiri I will move this question to Aspose.PDF support forum. My colleagues from Aspose.PDF team will help you shortly.

@itahiri

Please use the following code example to achieve your requirement. For more detail, please read following article:
Convert PDF to Microsoft Word Documents in .NET

Document pdfDocument = new Document(MyDir + "Source File.pdf");
DocSaveOptions saveOptions = new DocSaveOptions
{
    Format = DocSaveOptions.DocFormat.DocX,
    // Set the recognition mode as Flow
    Mode = DocSaveOptions.RecognitionMode.Flow,
    // Set the Horizontal proximity as 2.5
    RelativeHorizontalProximity = 2.5f,
    // Enable the value to recognize bullets during conversion process
    RecognizeBullets = true
};
pdfDocument.Save(MyDir + "22.12.docx", saveOptions);

We have attached the output DOCX with this post for your kind reference.
22.12.zip (26.6 KB)