Guides · PDF
PDF Merge vs. Split vs. Compress: Which Tool Do You Actually Need
Five PDF tools solve five different problems. A quick guide to picking the right one instead of guessing.
PDF tools tend to get lumped together as "PDF stuff," which is fair right up until you're staring at a file and genuinely unsure which button fixes your actual problem. Merge, split, remove pages, and compress solve four different problems that happen to share a file format. Here's how to tell which one you need in under a minute.
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 takes files in the order you give them and stitches them into one PDF, page count and formatting untouched. The only thing worth double-checking is the order you upload them in — most merge tools, this one included, keep whatever order you added the files, not alphabetical order, so 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.
