Hi,
We have an issue when trying to concatenate pdf files that contains architectural PDF doc.
Below is our code.
var editor = new PdfFileEditor();
editor.CopyOutlines = false;
editor.CopyLogicalStructure = true;
editor.CorruptedFileAction = PdfFileEditor.ConcatenateCorruptedFileAction.StopWithError;
var packetTempFilePath = agendaFileTmpPath.Replace(".pdf", "_out1.pdf");
var result = editor.Concatenate(pdfFilesToConcatenateList.ToArray(), packetTempFilePath);
We got “Object reference not set to an instance of an object Object reference not set to an instance of an object” error.
This is the link of the file that cause the issue. It’s a 100MB+ file and contains architectural images.
It was working fine with Aspose.PDF.Drawing 22.12.0 version. We are planning to upgrade our Aspose to 24.8.0 but it has above issue.
Can you please help us on this one.
Thanks!
Johnrie