Hello Aspose Supporter.
I tried to test Aspose.PDF for .Net version 22.1.0.0. And I got output like that:
Input file: InputFile.pdf (30.3 KB)
- Test on Windows 10 - 64 bit, and then I got output, and I validate output Pdf file by https://demo.verapdf.org/
Result:
ResultValidateSuccessfully.png (16.0 KB)
You can find pdf output on windows 10 - 64 bit in here:
OutputOnWin1064bit.pdf (2.6 MB)
-> Conclusion: the Aspose.PDF for .Net version 22.1.0.0 works well on Windows 10 - 64 bit.
- Test on Windows Server 2016 Standard - 64 bit and then I got output, and I validate output Pdf file by https://demo.verapdf.org/
Result:
ResultValidateFailed.png (16.4 KB)
You can find pdf output on windows Server 2016 Standard - 64 bit in here:
OutputOnWinServer2016Standar64bit.pdf (2.4 MB)
-> Conclusion: the Aspose.PDF for .Net version 22.1.0.0 does NOT works well on windows Server 2016 Standard - 64 bit
Here is our source code:
Aspose.Pdf.License license = new Aspose.Pdf.License();
license.SetLicense(“Aspose.Total.lic”);
try
{
FileInfo fi = new FileInfo("36666_2018-10-16_MH_Original-BUOB ANTON-080529_VEREINBARUNG.pdf");
Document pdfDocument = new Document(fi.FullName);
string logFileName = fi.DirectoryName + "/log_" + fi.Name + ".xml";
pdfDocument.Convert(new MemoryStream(), PdfFormat.PDF_A_1A, ConvertErrorAction.Delete);
string outFileName = fi.DirectoryName + "/converted_" + fi.Name;
pdfDocument.Save(outFileName);
}
catch (Exception ex)
{
Console.WriteLine("Exception: {0}", ex.ToString());
}
Can you please support me to check this problem on Windows Server 2016 Standard - 64bit ? Is it a bug from Aspose or I have to do something else?
I you want to have more information from me, please let me know.
Thank you very much for your checking and feedback.
Yours.
Nghia