Merge PDF Files Free Online — No Upload
The document is opened and edited in this tab. It stays local — a contract or a scan is never uploaded to be processed.
Loading the tool…
How it works
Why a merge should not change a single page
A PDF is a set of numbered indirect objects with a cross-reference table pointing at their byte offsets, and the pages hang off a /Pages tree in the document catalog. Merging properly means copying each source page object — its content stream, its font and image resources, its annotations — into a new document, then rebuilding the page tree and the xref around them. That is what pdf-lib does here. A lot of free merge sites take the other route and rasterise every page to a JPEG first, which produces a file that looks passable in a thumbnail and has no selectable text, no working links, no accessibility structure and several times the size. ISO 32000 does not require that; it is a shortcut in the tool, not a property of the format.
- Page tree
- Every source document's /Pages nodes are flattened into one tree in the output, renumbered as indirect objects behind a fresh cross-reference table.
- Embedded fonts
- Font programs travel with the pages that use them, so a document with an unusual typeface still renders as itself rather than falling back to a substitute.
- Annotations and links
- Link, note and stamp annotations belong to their page object and come across with it. Document-level outlines — bookmarks — and AcroForm fields do not.
- Order
- Files merge in the order you arrange them, and page order inside each file is untouched. Reordering pages afterwards is a separate tool.
- Output size
- Roughly the sum of the inputs. There is no rasterisation step to inflate it, and no cross-file resource deduplication to shrink it either.
How to use it
How to merge PDF files online
- 01
Add your PDFs
Two or more files, read from disk with the File API rather than uploaded.
- 02
Drag them into order
Each file shows a first-page thumbnail rendered by pdf.js, so near-identical documents are still tellable apart.
- 03
Merge and download
The combined document is assembled in the tab and saved straight to your downloads folder.
Where it earns its keep
Where merging PDFs is the whole job
- Combining a signed contract, its annexes and a payment schedule into one file for filing.
- Turning a month of scanned receipts into a single attachment for an expense claim.
- Assembling separately exported chapters into one document before it goes to print.
- Joining a cover letter and a CV so an application portal only needs one upload.
Questions
Merge PDF, answered
Do bookmarks and form fields survive the merge?
No. Page content, annotations and embedded fonts are copied, but the outline tree and the AcroForm dictionary that holds fillable fields live on the source document's catalog and are not rebuilt. If a file's bookmarks or filled fields matter, merge a copy and check the result before discarding the originals.
Are my PDFs uploaded to be merged?
No. The files are read from disk and the new document is assembled in this browser tab. Open your network inspector while you merge — no request carries a file, which is also why it keeps working with the network off.
Does merging lose quality or make text unselectable?
No. Pages are copied as objects, so text stays text, vector art stays vector and fonts stay embedded. There is no rendering step anywhere in the merge path — which is exactly what separates this from the tools that hand back a PDF full of page-sized JPEGs.
Can it merge a password-protected PDF?
Not without the password. An encrypted PDF has its streams and strings encrypted, so the page objects cannot be copied until it is decrypted. The file is detected and reported rather than failing silently — remove the password in the application that set it, then merge.