I would like to concatenate several PDF files to form one single PDF.
Now I've come so far that I know, PDFKit is the proper way to go (I guess).
But I am not sure, how to accomplish the merging.
Should I have one PDFDocument
and several PDFPage
and then call insertPage
on the PDFDocument
?
Or is there a much simpler way? I dont want to alter the PDFs contetwise, I just want to merge them.
Thanks a lot!