Home › Blog › How to Merge PDF Files Securely (Without Uploading Them)
PDF guidesHow to Merge PDF Files Securely (Without Uploading Them)
The problem with "free PDF merger" sites
Most free PDF sites work server-side: your files are uploaded, processed in a data centre, and the merged result is sent back. For a restaurant menu that's fine. For the documents people actually merge — signed contracts, passport scans, medical letters, payroll exports — it means handing confidential material to an operator you know nothing about, trusting their retention policy, their security, and their staff.
How client-side merging works instead
Modern browsers can run sophisticated document code locally. FileLocally uses pdf-lib, an open-source JavaScript library that parses each PDF's internal object tree in your browser's memory, copies the pages into a new document in your chosen order, and serialises the result back to bytes — which are handed to you as a download. The network tab of your browser's developer tools will confirm it: no upload request is ever made.
Three practical consequences:
- Privacy is architectural, not promised. There's no server to breach, subpoena or mismanage.
- It's faster for big files. No upload/download round-trip — a 150 MB merge starts instantly.
- It works offline. Load the page, disconnect, merge away.
Merge PDFs in 30 seconds
- Open the FileLocally PDF Merger.
- Drop in two or more PDFs. Each appears as a numbered card.
- Drag the cards into the order you want the documents to appear.
- Click Merge PDFs and download the combined file.
Common questions while merging
Can I merge password-protected PDFs?
Not directly — encryption exists precisely to prevent programmatic reading. Open the file in your PDF reader with the password, save an unlocked copy, then merge. FileLocally detects protected files and tells you which one is blocking the merge.
Will merging reduce quality?
No. Merging copies pages losslessly — text, vectors and images are transferred byte-for-byte. The merged file is approximately the sum of its parts (minus small savings from shared structural data).
Is there a file size limit?
Only your device's memory. Modern laptops handle multi-hundred-megabyte merges comfortably; very large jobs on old phones may be slower.
A note on page order and scanned documents
If you're combining scans (e.g. a signed signature page into a contract), merge in this order: main document first, then appendices, then the signature scan — or whatever your recipient's convention requires. Because reordering is drag-and-drop, it's easy to fix before committing.