Hi, I am evaluating the Aspose.Total for .NET.
I am trying to convert a large Ms word (doc) file. Actually the file is downloaded from Microsoft website about Deployment for Office SharePoint Server 2007. The following is the download link.
https://learn.microsoft.com/en-us/previous-versions/office/office-12/mt705740(v=office.12)?redirectedfrom=MSDN
I attached three screensnaps, The MS word file itself, the pdf generated by AsposeWords and the pdf generated by Ghostscript. The PDF generated by GhostScript is exactly the same as the MS WinWord, but the PDF generated by Aspose.Words is different. A few lines disappeared on the PDF generated by Aspose.Words.
The programming is very simple, a function as following is called by the main function from commandline:
private static void ConvertDoc2Pdf(string inFileName, string outFileName)
{
Aspose.Words.License license = new Aspose.Words.License();
license.SetLicense("Aspose.Total.lic");
Document doc = new Document(inFileName);
doc.Save(outFileName, SaveFormat.Pdf);
}
--------------------------------------------------------
Are there any ideas from the support team about this problem?
Regards