Merge PDF combines several PDF files into a single document — entirely inside your browser. Drop in your files, drag them into the order you want, give the result a name, and download one merged PDF. It is built for anyone who needs to staple together a set of documents: a scanned contract plus its appendices, an invoice plus its receipts, a portfolio of pages exported one at a time, or a stack of forms that belong in one file. Because nothing is uploaded, it is safe for the documents you would never want to send to a stranger’s server.
How it works
When you add files, the tool reads each one with the browser’s FileReader API and
parses it with pdf-lib, a pure-JavaScript PDF library. That parsing step lets it
show you the page count and file size of every PDF before you commit to anything,
so you can confirm you have the right files and the right number of pages.
The list you see is fully reorderable. Each row can be dragged up or down, and there are arrow buttons for precise, one-step moves — handy on touchscreens. The order in the list is the order in the final document, so the file at the top becomes the first pages of the merged PDF.
When you press Merge, the tool creates a brand-new, empty PDF and copies every
page from each source file into it, in order, using pdf-lib’s copyPages. This is a
lossless copy: selectable text stays selectable, images keep their resolution, and
vector graphics stay sharp — nothing is re-compressed. The finished document is handed
to you as a download. At no point does any byte of your files travel over the network,
which is something upload-based competitors architecturally cannot offer.
Example
Say you have three files from a job application: cv.pdf (2 pages), cover-letter.pdf
(1 page) and references.pdf (3 pages), and you want to send them as one attachment.
- Drop all three onto the box. The list shows
cv.pdf · 2p,cover-letter.pdf · 1p,references.pdf · 3p— 6 pages total. - Drag
cover-letter.pdfto the top so the letter leads. - Name the output
applicationand press Merge 3 PDFs.
You download a single application.pdf with all 6 pages in the order
cover letter → CV → references. The original files are untouched, and nothing left
your laptop.
| Files added | Pages each | Output |
|---|---|---|
| 2 invoices | 1 + 1 | 1 PDF, 2 pages |
| 3 contract parts | 4 + 2 + 6 | 1 PDF, 12 pages |
| 10 scanned forms | 1 each | 1 PDF, 10 pages |
Every page is copied in your browser — no numbers, names or documents are uploaded or stored.