I am facing a situation where the system will receive multiple base64 encoded PDF files from a third party system.
I need to merge those base64 encoded strings into one PDF, by appending the PDF in order and generate a new base64 encoded PDF file in Java.
I found out that I could not just concat multiple base 64 encoded PDF files together to form a new single base 64 encoded PDF.
Is there a way to accomplish this?
How to merge two PDF files into one in Java? does not answer the question because it is not merging multiple base64 encoded PDF files, thank you.