PDF to Word- Compatable mode Show

Sample Agreement 3.pdf (38.9 KB)
Hi Team,

we are convert attached PDF to Word with V22.5 below code. After convert when we open word file with open with Compatible mode. How can I remove this Compatible mode.

Document do1c = new Document();
do1c.doc = File.ReadAllBytes(@“C:\Users\pmehta\Downloads\Sample Agreement 3.pdf”);

            var stream = new MemoryStream(do1c.doc);
            Aspose.Pdf.License asposeLicense = new Aspose.Pdf.License();
            asposeLicense.SetLicense("Aspose.PDF.NET.lic");
            var doc = new Aspose.Pdf.Document(stream);
            Aspose.Pdf.DocSaveOptions saveOptions = new Aspose.Pdf.DocSaveOptions
            {
                Format = Aspose.Pdf.DocSaveOptions.DocFormat.DocX
            };
            MemoryStream outStream = new MemoryStream();
            doc.Save(@"C:\Users\pmehta\Desktop\MPLA Letter\DOC_NEW.docx", saveOptions);

@Vipin_Paliwal
Thank you for contacting support.
Which version of the Word do you use?
Can you send a screenshot with the message you receive?

Hi Team,

Below word Version

image002.png

Below issue I face after conversion. Attached file.

DOC_NEW.docx (12.9 KB)

@Vipin_Paliwal
Thank you! We are checking it and will get back to you shortly.

Hi Team,

Any update ?

@Vipin_Paliwal
For backward compatibility, Aspose creates a document that is not the latest version.
New versions of Word open such documents in compatibility mode.
You can convert such a document in the Word menu: File -> Info -> Conversion button from compatibility mode.