I have many single-page PDF files that need to be merged into one with many pages (PDFs are generated from HTML pages). Moreover it needs to be a cross-OS, cross-browser solution and independent on the backend technology used on the server (must work and be easy to install on Windows, Linux and OS X). I was thinking about merging the files with PDF.js (from Mozilla) but from what I’ve read it only renders proper PDF under Firefox and Chrome (so IE users are excluded, or not ?). Any other options to do this in a browser/web environment?
It’ll be used in a commercial application so I also need a proper license if it’s some third-party software.
I have many single-page PDF files that need to be merged into one with
Share
You can’t do this client side, unless you roll your own. There’s currently nothing that can handle this client side available.
Your best shot is to try to use something server side, like Python + PyPDF, which is quite cross platform.