Hi!
I'm using version 8.4.0.0 of Aspose.Pdf and when I merge two compliant pdf/a files, the result is a normal pdf, not a pdf/a.
I have check both the source files and they are pdf/a-1 acording to preflight.
The source file is pdf-version 1.4
The result file is a pdf-version 1.7
This is the code i'm using:
PdfFileEditor pdfEditor = new PdfFileEditor();
string[] filesArray = new string[2];
filesArray[0] = "input1.pdf";
filesArray[1] = "input2.pdf";
pdfEditor.Concatenate(filesArray, "output.pdf");
Why isn't the result a pdf/a file?
How can I make it pdf/a ?
Regards
Per