Add your PDFs in the order you want them to appear, use the up/down controls to fix that order, then merge. The tool copies every page from each file into one new PDF entirely inside your browser tab — nothing is uploaded to a server first.
What actually happens when you merge
A merge tool that requires uploading works by sending your files to a server, combining them there, and sending a result back down. A browser-based merge skips that round trip: a PDF library running as JavaScript in the page reads each file's pages directly and copies them into a new document, all inside your device's memory.
You can verify this yourself without trusting a privacy claim on faith: open your browser's developer tools, switch to the Network tab, and merge a file. No PDF data appears in any outgoing request — the only network activity is loading the page itself.
Why file order matters
The merged PDF's page order follows the order the source files are arranged in before you merge — first file in the list becomes the first pages, second file becomes the next pages, and so on. Every page inside each source file keeps its own internal order; merging combines documents, it doesn't reorder pages within a single file.
If you need to reorder pages within one PDF, not across several, that's a different operation — see the related tool below.
The one real limitation: password-protected files
A merge tool works by reading the raw page content of each source file. An encrypted PDF's page content isn't readable without the password, so a password-protected file needs to be unlocked first — merging can't do that step for you.
This isn't a workaround-able restriction specific to one tool; it follows from how PDF encryption works. Remove the password, then merge.
Merging only combines files — it doesn't recompress images, alter text, or re-render pages. If the combined file is larger than expected, that's simply the sum of the source files' sizes, not something merging added.
A practical workflow
Unlock any protected files first
If a source PDF has a password, remove it before merging — encrypted pages can't be read and copied.
Add files in the order you want
Use the up and down controls to fix the order before merging — the first file becomes the first pages.
Merge, then check the result
Open the downloaded PDF and confirm the page order and page count match what you expected before discarding the originals.
Frequently asked questions
Does merging upload my files anywhere?
No. The merge happens with a JavaScript PDF library (pdf-lib) running in your browser tab. You can confirm this yourself by opening your browser's Network tab before merging — no file data leaves the page.
Can I merge password-protected PDFs?
Not directly. A password-protected source file needs its password removed first, because the merge step reads each file's raw page content and can't do that on encrypted data.
Does merging change the page content or quality?
No. Each page is copied into the new document as-is — merging combines files, it does not re-render, recompress, or otherwise alter what's on a page.
Is there a limit to how many files I can merge?
There's no fixed file-count limit, but very large combined documents use more of your device's memory during processing since everything happens in the browser tab rather than on a server.
Primary reference
- ISO 32000-1 (PDF 1.7 specification) — the document structure that defines how pages and page content are organized inside a PDF file.