PDF Merger

Share:

Merge multiple PDFs into one, drag to reorder, choose page ranges per document — 100% in your browser.

RT-IMG-006 · Image & File

PDF Merger

💡 Page-range field: Leave blank to include all pages. Or type 1-3,5,7-9 to grab only those pages from that document. Order in the merged PDF matches the order shown above — drag rows to rearrange.
🔒 PDFs stay on your device. Merging happens entirely in your browser using the self-hosted pdf-lib library. Nothing is uploaded — verify in DevTools → Network.
Advertisement
After results · AD-W1 Responsive · Post-tool — peak engagement

How to merge PDFs

Add your PDFs

Drag and drop your PDF files onto the dropzone, or click to pick them. Each file gets a row showing its name, page count, and size. You can add as many as you like — there's no upload limit because nothing is uploaded.

Reorder if needed

The merge order matches list order from top to bottom. Use the up/down arrows next to each row, or drag the row by the ⋮⋮ handle to rearrange. The first PDF in the list becomes pages 1+ of the output.

Pick page ranges (optional)

Leave the range field blank to include every page. Or type a range like 1-3,5,7-9 to grab only those pages from that document. Useful for combining a cover letter (page 1 only) with a full resume (pages 1-3) into one PDF.

Click Merge and download

The merged PDF is built in your browser and saved as merged.pdf. Larger merges (50+ pages, many images) may take a few seconds — pdf-lib is fast but not instant. The download is the complete result; no second step needed.

Advertisement
After how-to · AD-W2 Responsive

PDF merging — surprisingly complicated, finally easy

PDF as a format dates back to 1993, when Adobe published the first spec to solve a specific problem: how do you move a document from one computer to another and have it look identical? The answer was to embed everything in the file — fonts, images, layout instructions, even (later) interactive form fields. That design choice is why a 1 MB Word document becomes a 1.4 MB PDF when exported; everything needed to render the document travels with it. It's also why merging PDFs is harder than concatenating two text files — the merged document must rebuild the cross-reference table that points to every object, deduplicate any shared fonts and images, and renumber page references so internal links still work.

Why most "free online PDF tools" are not free

Open a tab. Search for "merge PDF online". You'll get dozens of sites that ask you to upload your files, watch a progress bar, wait, then download the merged result. The dirty secret of that workflow: your PDFs were just uploaded to a stranger's server. Many of these sites are legitimate and delete files after a few hours. Some are not. Almost all retain enough metadata to know what you merged, when, and from what IP. If your PDF is a tax return, an employment contract, a medical record, or anything containing names and account numbers — uploading it to an unknown server crosses a privacy line that you probably wouldn't cross knowingly.

pdf-lib (the open-source library powering this tool) is 380 KB of JavaScript that does everything Adobe's $20/month Acrobat Pro does for PDF merging — in your browser, with zero uploads.

What "100% client-side" actually means

The pdf-lib library — open-source, MIT-licensed, 380 KB of compiled JavaScript — runs entirely in your browser tab. When you drop a PDF, it's read into an ArrayBuffer in memory (never on disk, never on a server). When you click Merge, pdf-lib walks through each source PDF's object table, copies the pages you want into a new in-memory document, and writes that back out as a Blob your browser can save. You can verify this yourself: open DevTools, switch to the Network tab, drop your PDFs, click Merge, watch — there is no outbound traffic. The page only loaded the pdf-lib script itself (cached after first visit) and the page CSS. Your PDFs go nowhere.

The APAC document landscape

PDF merging is one of the most-requested document operations in APAC office environments. Singapore, Hong Kong, Japan, South Korea, Taiwan, Australia have document-heavy financial services, legal, and government workflows where combining quotes + invoices + receipts into one PDF is daily admin. India sees massive use across the BPO, education, and government-paperwork sectors — Aadhaar documents, PAN cards, college transcripts often need merging into single-file submissions. Indonesia, Philippines, Thailand, Vietnam have growing SaaS-tools markets where small businesses combine purchase orders with delivery receipts for accounting. China is split: WeChat Work and DingTalk handle a lot of document workflow with built-in PDF tools, but external sharing (especially cross-border) still relies on plain PDF + email. Malaysia's e-invoicing rollout (mandatory by mid-2026) is driving a surge in PDF merging tools as small businesses combine line-item PDFs with summary statements. Across the region, the same pattern holds: people merge PDFs daily, and most of them are uploading the wrong things to the wrong sites.

What you can't do (yet)

This tool merges PDFs in the order you arrange them, with optional per-document page selection. What it doesn't do (yet): split a single PDF into pieces, rotate pages, add page numbers, add bookmarks, OCR scanned text into selectable form, or strip passwords from encrypted PDFs. Most of those are on the roadmap. For now, if your PDF is password-protected, you need to remove the password in Adobe Acrobat or Preview (macOS) first — pdf-lib supports decryption-disabled merging but it can't bypass the password itself. And for visual editing of PDF content (text changes, image swaps), no in-browser tool is yet good enough to recommend — that's still desktop software territory.

10 Things You Didn't Know About PDF

01

PDF was invented in 1991 by Adobe co-founder John Warnock under the codename "Camelot" — the goal was a portable digital version of paper documents.

02

Adobe made PDF an open ISO standard (ISO 32000) in 2008 — meaning anyone can build PDF tools without paying Adobe a cent.

03

The maximum PDF file size is 10 terabytes — though no real-world software can handle anything close to that.

04

PDF/A is a separate ISO standard (ISO 19005) designed for long-term archival — required by governments worldwide for legal and tax records.

05

A single PDF file can contain JavaScript, multimedia, 3D models, form fields, digital signatures, and even other PDFs embedded as attachments.

06

The smallest valid PDF file is just 67 bytes — a "Hello, World" PDF with a single blank page weighs less than this paragraph.

07

PDF/X (X for "exchange") is a printing-industry variant that requires all fonts and images to be embedded — used for sending print-ready files to commercial printers.

08

Encrypted PDFs use AES-128 or AES-256 — the same algorithms as full-disk encryption. A strong PDF password is genuinely uncrackable without a quantum computer.

09

Tagged PDF (introduced in PDF 1.4) adds accessibility metadata so screen readers can navigate documents — required for government and education sites under accessibility laws.

10

The pdf-lib library powering this tool is open-source MIT-licensed and weighs 380 KB — it handles 95% of what Adobe Acrobat does for document operations.

FAQ

  • No. The pdf-lib library runs entirely in your browser tab. PDFs are read into memory, merged in memory, and saved back to your downloads. Nothing is sent to RECATOOLS servers. You can verify by opening DevTools → Network and watching for outbound traffic when you click Merge — there is none.

  • Soft limit only — your browser's memory. Modern desktop browsers comfortably handle 200+ MB of combined PDF input. Phones can usually do up to 50-100 MB. If your browser tab crashes during merge, the combined files were too big — split into batches and merge the results.

  • Not yet. pdf-lib's ignoreEncryption flag works for PDFs with restrictions (no-copy, no-print) but cannot bypass an open-password. Remove the password first in Adobe Acrobat or macOS Preview, then merge here.

  • Type page numbers separated by commas, or ranges with hyphens. Examples: 1 (page 1 only), 1-5 (pages 1 through 5), 1,3,5 (pages 1, 3, 5), 1-3,8,10-12 (mix). Blank field = all pages.

  • Yes — add the same PDF twice, set page-range 3 on the first instance and 1-2,4-10 on the second. The merge will give you pages 3, 1, 2, 4, 5... etc. Clunky but works.

  • Internal hyperlinks within each source PDF are preserved. Bookmarks (the table-of-contents sidebar in Acrobat) are not preserved in this version. Form fields are flattened. For preserving bookmarks, use a desktop tool like PDFsam.

  • Not directly. Convert Word/Excel to PDF first (use Print → Save as PDF in any office app). For images, use our Screenshot to PDF tool to convert JPG/PNG into PDF, then merge here.

  • Usually means the PDF is corrupted (try opening it in a viewer first), password-protected (remove the password), or uses an obscure PDF/X variant that pdf-lib doesn't fully support. Try re-saving it from Adobe Acrobat or your PDF viewer, then try again.

  • Producer and Creator are set to "RECATOOLS PDF Merger". Creation date is now. The merged document does NOT inherit metadata from the source PDFs — useful if you want to scrub source-file metadata. Author and Title remain blank unless you edit the result in Acrobat.

  • Yes on iOS Safari and Chrome on Android. Use the "Choose files" button (drag-and-drop is desktop-only on most phones). Larger merges may run out of memory on older phones — keep mobile merges under ~30 MB combined input.

Related News

You may be interested in these recent stories from our newsroom.

View all news →
Advertisement
Pre-footer · AD-W3 728 × 90

75 more free tools

Calculators, converters, security tools — no signup.