Hi all,
I am currently working for a client who has Aspose.Words.
He uses Aspose to convert the Word document to a PDF document.
It’s a simple conversion without any changes to the document but we have a problem with the conversion.
We don’t have the same behavior using Aspose or the Word desktop application to convert the document. With Aspose we have a shift of the schema but it isn’t the case with the desktop application.
So my question is : is it possible to have the same behavior as the desktop application using Aspose.Words ?
Here are the documents :
- Initial document : TestWordConversionIssue.docx (108.9 KB)
- Result using Aspose : TestWordConversionIssue.pdf (36.9 KB)
- Expected Result : TestWordConversionIssue_UsingWord.pdf (127.7 KB)
Here is the code that i use :
var doc = new Document(@"C:\...docx");
doc.Save(@"C:\...pdf");
Thanks in advance!