I am getting this error when opening the document I created in Aspose.PDF:
There was an error processing a page. There was a problem reading this document (18).
I attached two files:
1. pdfdoc.pdf - which is a file that was created using Aspose.Words and Aspose.Pdf.
2. sst.pdf - which is a file created usin Aspose.Pdf
Here is my code:
Aspose.Pdf.License license = new Aspose.Pdf.License();
license.SetLicense("C:\\users\\Aspose.Total.lic");
FileStream inStream1 = new FileStream("c:\\testdata\\pdfdoc.pdf", FileMode.Open);
FileStream inStream2 = new FileStream("c:\\testdata\\sst.pdf", FileMode.Open);
PdfFileEditor editor = new PdfFileEditor();
editor.Append(inStream1, inStream2, 1, 100, inStream1);
inStream1.Close();
inStream2.Close();