Private File Tools

Guides

How to Merge PDF Files Without Uploading Them

Combining PDFs usually means handing your documents to a website. Here are the ways to merge them on your own machine instead — on Mac, Windows, or in the browser.

Published 1 August 2026

Merge PDF — free, runs in your browser Open →

Merging PDFs is one of the most common document tasks there is. You’ve scanned a contract in three parts. You need to combine an application form with its supporting documents. You want a year of invoices in one file.

It’s also one of the tasks where the default solution — search, click the first free tool, upload — deserves a second thought. PDFs are disproportionately the documents that matter: contracts, bank statements, medical records, applications, anything signed.

Here’s how to do it without the upload.

Why the upload is worth avoiding

Most free “merge PDF” websites work by receiving your files on their server, combining them there, and giving you the result to download. That means complete copies of your documents sat on someone else’s hardware, however briefly.

For a stack of recipes, fine. For an employment contract, a mortgage application, or a set of medical test results, you’re handing a company you know nothing about a full copy of material you’d otherwise keep carefully. Their retention policy is a claim you can’t verify, and a converter site holding millions of uploaded documents is a genuinely attractive target for attackers.

The reassuring part is that merging PDFs is computationally trivial. There is no technical reason it needs a server at all.

Option 1: In your browser, with nothing uploaded

Modern browsers can manipulate PDFs directly using JavaScript. The file is read into memory, the pages are recombined, and a new file is written back out — all on your own machine.

Our Merge PDF tool works this way. Add as many PDFs as you need, reorder them with the arrow buttons until the sequence is right, and merge. There’s no upload, no account, no watermark, and no cap on file size or page count beyond what your own device can hold.

Two details worth knowing:

Nothing is sent anywhere. You can confirm it by opening your browser’s developer tools and watching the Network tab while you merge — no document data leaves. Or turn off your wifi first and merge anyway; it still works.

Document metadata is cleaned up. PDF files carry hidden fields recording which software produced them, along with title and author information from the original documents. Our merged output deliberately leaves the producer and creator fields blank, and because merging copies page content rather than document properties, the source files’ title and author metadata doesn’t carry over either.

Pick this if you want it done now, on any operating system, without installing anything.

Option 2: Preview on macOS

macOS has a capable PDF editor built in and most Mac users don’t know it.

  1. Open the first PDF in Preview.
  2. Show the sidebar: View → Thumbnails.
  3. Drag the second PDF file from Finder directly into the sidebar, dropping it where you want those pages to land.
  4. Rearrange pages by dragging thumbnails.
  5. File → Export as PDF to save the combined document.

A caution: if you use File → Save rather than Export, Preview modifies the original file in place. Export to a new file if you want to keep your originals intact.

You can also select multiple PDFs in Finder, right-click, and choose Quick Actions → Create PDF to combine them in one step — quicker, but with no control over page order beyond the file selection order.

Pick this if you’re on a Mac. It’s free, local, and already installed.

Option 3: Windows

Windows has no built-in PDF merging, which is why so many Windows users end up on converter websites.

The genuinely local options:

Microsoft Print to PDF works for simple cases: open each document, print to the PDF printer, and you get a single file — but only one document at a time, so it doesn’t really merge.

PDF24, PDFsam Basic, or LibreOffice Draw are free desktop applications that merge properly and offline. PDFsam Basic in particular is open-source and designed for exactly this.

Adobe Acrobat does it well if you already pay for it.

Pick a desktop app if you merge PDFs regularly on Windows and want a permanent tool. For a one-off, the browser route is faster than installing software.

Option 4: The command line

If you’re comfortable in a terminal, qpdf handles this cleanly and is available on every platform:

qpdf --empty --pages first.pdf second.pdf third.pdf -- merged.pdf

Ghostscript can do it too, though the syntax is less friendly.

Pick this if you’re scripting it, or merging many sets of files in a batch.

Getting the page order right

The single most common frustration with merging isn’t the merge — it’s discovering afterwards that page 12 is in the wrong place.

A few habits help:

Name files so they sort correctly. 01-application.pdf, 02-passport.pdf, 03-payslips.pdf will sort predictably in any tool. Bare names like scan1 and scan10 sort in surprising ways.

Check the page count before and after. If your three files had 4, 2 and 6 pages, the merged file should have 12. Any other number means something was dropped or duplicated. Our merge tool shows the total pages as you add files and again on the result, precisely so this is easy to catch.

Reorder before merging, not after. Rearranging pages inside a merged PDF is more work than getting the order right at the start.

Splitting, the other direction

The opposite problem is just as common: you have one large PDF and need only part of it. A bank might want pages 3 to 8 of a statement; a form might need to be separated back into components.

Our Split PDF tool handles both cases — breaking a document into single pages, or pulling out specific ranges like 1-3, 5, 8-10. Same approach, same privacy properties: it runs in your browser and nothing is uploaded.

Files that won’t merge

Two situations cause most failures.

Password-protected PDFs. Encrypted documents can’t be read until the password is removed. Open the file in a PDF reader, enter the password, and save or export an unprotected copy first. Any tool that claims to merge encrypted PDFs without the password should be treated with suspicion.

Damaged files. A truncated or corrupted PDF — often the result of an interrupted download or a failed scan — may fail to parse. Re-downloading or re-scanning is usually the only fix.

In short

Merging PDFs is simple enough that it doesn’t warrant uploading your documents to a stranger. On a Mac, Preview already does it. On Windows, a free desktop tool or a browser-based one will. And if the documents in question are the kind you’d hesitate to email to someone you don’t know, that’s exactly the signal to keep them on your own machine.