Guides · PDF

PDF Merge vs. Split vs. Compress: Which Tool Do You Actually Need

Merge, split, remove pages, or compress — five PDF jobs that get lumped together as one. Here is how to pick the right tool in under a minute.

Merge combines multiple PDFs into one file, Split breaks one PDF into several, Remove Pages deletes specific pages from a document, and Compress shrinks a file's size — four different jobs that happen to share the same file format and get lumped together as "PDF stuff." Here's how to tell which one you need in under a minute.

  • Several files → one file: use Merge.
  • One file → several files: use Split.
  • Delete a few pages, keep everything else as one file: use Remove Pages.
  • Same content, smaller file size: use Compress.

You have several files that need to become one

That's Merge. The common case is a resume and a cover letter, or a stack of scanned receipts, that need to travel as a single attachment instead of three separate ones. Merge stitches the files into one PDF in whatever order they end up in, page count and formatting untouched. Files start in the order you upload them, not alphabetical order, but that's not fixed — use the up/down arrow buttons next to each file to put them in the order you actually want before merging, then a quick glance at the result before you send it is worth the ten seconds.

You have one file that needs to become several

That's Split, and it covers two slightly different jobs people usually mean by "split a PDF": breaking one large document into smaller standalone files (say, a 90-page report into three 30-page sections), or pulling specific pages out to send on their own. If you only need to drop pages rather than extract them into a new file, that's actually a narrower job — Remove Pages — and it's worth using that instead if it's all you need, since it skips the step of deciding what to do with the leftover pages.

You need to delete a few pages, not restructure the whole document

That's Remove Pages specifically. The distinction from Split matters more than it sounds: Split assumes you want the removed content to go somewhere (a new file); Remove Pages assumes you just want it gone — a blank cover sheet, a duplicate page, an accidentally-scanned instruction sheet. Pick pages, remove them, download what's left as one file. No decision about where the removed pages end up, because there isn't one.

The file is fine, it's just too big

That's Compress, and it's the one most people reach for too late — usually after an email provider has already rejected the attachment. Compression works by re-encoding embedded images at a lower bitrate and stripping redundant internal data the PDF format tends to accumulate (especially in scanned documents, where every page is really just a large embedded photo). Text stays text — compression doesn't touch it — so a text-heavy report will shrink less dramatically than a scan-heavy one, and that's expected, not a sign it didn't work.

Doing more than one of these to the same file

These tools are meant to be chained, not treated as one-shot. A common real sequence: merge three scanned documents into one file, remove the two blank cover pages that came along with the scans, then compress the result before emailing it. Each step downloads its own result, which you then feed into the next tool — there's no multi-step pipeline mode, on purpose, since it keeps each tool's job (and its code) simple and independently testable rather than one large tool trying to do everything.

Why none of this requires uploading anything

Every one of these tools runs the actual PDF manipulation — merging pages, deleting pages, re-encoding images — inside your browser tab, using the same PDF-parsing libraries a server-side tool would use, just running locally instead. That matters more for this category of tool than almost any other file-tool category, because the documents people merge, split, and compress are disproportionately the sensitive ones: contracts, financial statements, ID scans, medical paperwork. There's no upload step to skip being careful about, because there isn't an upload step at all.