Aspose.pdf version 17.4 (for DotNet).
Code is in C#.
I have 5 pdfs, 4 of the PDFs are created from MS Word (saved as PDF), and one is an XFA based PDF.
When I concatenate all 5 pdfs into one PDF, the data from the XFA PDF is ‘removed’ from the final PDF.
Here is the code I’m using to concatenate the 5 pdfs into one:
_streamList is a List of the 5 pdfs as stream.
PdfFileEditor editor = new PdfFileEditor();
using (FileStream stream = File.Create(path))
{
editor.Concatenate(_streamList.ToArray(), stream);
}
Any help is much appreciated!
-Mark.