I am trying to concatenate two large PDF documents together using Aspose.PDF (23.1) in Java like this:
Document doc1 = new Document("D:/input1.pdf");
Document doc2 = new Document("D:/input2.pdf");
for (final Page p : do…...and a small amount of header/footer text. I can provide the actual...