Merge PDF
Merge multiple PDF files into a single document. Perfect for combining reports, invoices, or any PDF files into one cohesive file.
Loading tool…
What is a PDF, and what happens when you merge one?
PDF stands for Portable Document Format, a file type Adobe published in 1993 and released as an open standard (ISO 32000) in 2008. Its whole purpose is fidelity: a PDF carries its own fonts, vector paths, images, and page geometry, so page 4 looks identical whether it is opened on a phone in Amman or printed in an office in Berlin. That is why contracts, invoices, scanned records, and academic papers all end up as PDFs.
Merging is not the same as stapling images together. Each source file has its own page tree, font resources, embedded colour profiles, and object references. A correct merge rebuilds a single document that re-points every one of those internal references, deduplicates shared resources where it can, and writes a new cross-reference table. Done properly, the result is one file whose text is still selectable, whose fonts still render, and whose pages keep their original size and orientation.
Why we built this tool
Merging PDFs is one of the most common office tasks there is, and it is also one where the files involved are most often confidential: signed contracts, medical records, payslips, bank statements, tender documents. Almost every free merge site handles this by uploading your documents to their server, processing them there, and promising to delete them later. You have no way to verify that promise.
We built this tool the other way around. The merge runs inside your browser using a WebAssembly PDF library, so your documents are read from your disk into browser memory, recombined on your own machine, and handed straight back as a download. There is no upload endpoint on this site and no server that could keep a copy. That also removes the usual side effects of server tools: no file-size cap dictated by someone's upload limit, no queue at peak hours, and no watermark added to your output.
Tips and common mistakes
- Name your source files so they sort in the order you want them merged — a scanner's default names rarely match the sequence a bundle needs.
- Mixed page sizes survive a merge intact, so a document combining A4 and Letter pages will print inconsistently unless you standardise the sources first.
- Merging does not remove passwords: an encrypted source will refuse to combine until you unlock it, which is the correct behaviour rather than a fault.
- Watch the output size on image-heavy scans — merging twenty scanned contracts produces a file that most email systems will reject.
Quick start: using Merge PDF
- Open the tool above and add two or more PDF files, either with the file picker or by dropping them in.
- Check the order of the list — files are merged top to bottom, and you can rearrange them before running.
- Remove anything you added by mistake; nothing is processed until you start the merge.
- Click merge and let the tool rebuild the combined document in your browser.
- Download the single merged PDF and confirm the page count matches the sum of your sources.
If your combined file is larger than you expected, run it through Compress PDF afterwards. Need the opposite operation? Split PDF pulls a big document apart again.