Merge PDF Files
This tool combines several PDFs into one file without uploading anything. You pick the documents, put them in the order you want, and the merged PDF is assembled in your browser's memory and handed straight back to you. Nothing is sent to a server, which matters because the things people merge — contracts, scans of ID, medical paperwork — are exactly the documents you would not email to a stranger.
updated
- ✓ Runs in your browser — nothing uploaded
- ✓ No sign-up
- ✓ Free, no limits
- 1 · Select PDFs
- 2 · Order them
- 3 · Merge & download
How merging in the browser works
A PDF is a container: a list of page objects plus the fonts, images and metadata those pages refer to. Merging is not conversion — it is building a new container and copying the existing page objects into it, in order, along with everything each page depends on.
That is exactly what happens here. Each file you choose is read into memory with the browser's FileReader, parsed by pdf-lib, and its pages are copied into a fresh document one after another. The result is saved to a blob and offered as a download. There is no upload step because there is no server in the design — the entire operation is arithmetic on bytes that never leave the tab.
The practical consequence is that page content is copied, not re-encoded. Text stays selectable, vector graphics stay sharp at any zoom, and an image that was 300 dpi in the source is still 300 dpi in the output. A tool that rasterises pages to merge them would quietly cost you all three.
What happens to your pages
Files are merged in the order they appear in the list, and every page of each file is included. Nothing is reordered, dropped or resized, and pages of different sizes stay at their own sizes — merging an A4 contract with a US-Letter receipt gives you one document containing both, each page keeping its original dimensions.
in contract.pdf 4 pages A4
signature-page.pdf 1 page A4
receipts.pdf 3 pages Letter
out merged.pdf 8 pages pages copied, not re-encodedBecause pages are copied rather than rebuilt, the output size is roughly the sum of the inputs. Merging is not compression — if the result is larger than you want, compress it afterwards rather than expecting the merge to shrink it.
The tool needs at least two files, which is the only rule it enforces. Beyond that the limit is your device's memory, not an artificial page or file-size cap: a few hundred pages of text merges in a second or two, while a folder of high-resolution scans will take longer and use more RAM on an older phone.
Why most "merge PDF" sites ask you to upload
Because it is easier to build that way, and because it was the only way to build it for most of the web's history.
Manipulating PDFs used to require server-side libraries, so the standard architecture was: take the file, POST it, process it on a machine you control, return a download link. That link usually lives at a public URL for some period. The file sits on a disk. It appears in logs. It may be replicated to a backup. None of that is necessarily sinister — it is simply what the architecture implies — but it means your document has been handed to an organisation you have not audited, under a retention policy you have not read.
Now think about what people actually merge. Signed contracts. Scans of a passport for a visa application. Medical letters. Bank statements for a mortgage broker. Invoices with client names on them. This is close to a worst case for casual uploading, and it is precisely the category where the convenience of a free web tool is most tempting.
This page cannot leak your document because it never receives it. That is not a promise about our retention policy — it is a property of where the code runs, and you can verify it in about ten seconds. Open your developer tools, switch to the Network tab, merge two files and watch: no request carries them. Or load the page, disconnect from Wi-Fi, and merge anyway. It still works.
What it does not carry over
Merging copies pages, and a few things live outside the pages. Bookmarks — the clickable outline some PDFs show in a sidebar — belong to the document as a whole rather than to any page, and they are not reconstructed in the merged file. Document-level metadata such as the original title and author is likewise not inherited; the output is a new document.
Password-protected files are rejected rather than silently mangled. If a PDF is encrypted you will get an error, and the fix is to open it in a viewer, supply the password, and save an unlocked copy first. A tool that quietly stripped encryption for you would be doing something you did not ask for.
Interactive form fields are copied with their pages, but two source files that use the same field names can collide once they share one document, which is a limitation of the format rather than of this tool. If you are merging filled forms and the values matter, flatten them before merging.
Frequently asked questions
Are my PDF files uploaded to a server?
No. The merge runs entirely in your browser using pdf-lib — you can disconnect from the internet after the page loads and it still works. Nothing is transmitted, logged or stored, and you can confirm it yourself in the Network tab in about ten seconds.
How do I control the page order?
Files are merged top to bottom in the order shown in the list, and every page of each file is included. Add them in the order you want the finished document to read; to move a file to the end, remove it and add it again.
Is there a file size or page limit?
There is no artificial cap. The practical limit is your device's memory, because the whole job happens there. Documents of a few hundred text pages merge in a second or two; a folder of high-resolution scans takes longer and will feel it most on an older phone.
Does merging reduce the quality of my PDFs?
No. Pages are copied rather than re-encoded, so text stays selectable, vector artwork stays sharp at any zoom and images keep their original resolution. The trade-off is that merging does not shrink anything either — the output is roughly the sum of the inputs.
Why won't my password-protected PDF merge?
Encrypted PDFs are rejected rather than silently unlocked. Open the file in any PDF viewer, enter the password, then save or print an unlocked copy and merge that. A tool that stripped the encryption for you would be removing a protection you deliberately applied.
Will my bookmarks and form fields survive?
Form fields are copied along with their pages, though identical field names in two source files can collide once they share a document — flatten filled forms first if the values matter. Bookmarks belong to the document rather than to any page and are not rebuilt in the merged file.