← Back to Blog

Merging, Splitting, Rotating, and Compressing PDFs: A Practical Guide

Four PDF operations almost everyone eventually needs

The Four PDF Operations Everyone Eventually Needs

PDFs are the default format for anything meant to look the same everywhere — contracts, invoices, reports, scanned documents. But the format's whole point (fixed, portable layout) makes it awkward to edit. Sooner or later almost everyone hits one of four common needs: merging several PDFs into one, splitting one PDF into several, rotating pages that were scanned sideways, or compressing a file that's too large to email.

Merging PDFs

Merging combines multiple PDF files into a single document, in whatever order you choose. Typical scenarios: combining a cover letter with a resume before submitting a job application, assembling several scanned receipts into one file for an expense report, or stitching together chapters of a report that were exported separately. A good merge tool preserves each source file's original formatting, embedded fonts, and images exactly — merging should never re-render or degrade the pages, just concatenate them.

Splitting and Extracting Pages

Splitting does the reverse — taking one PDF and pulling out a subset of pages, or breaking it into several smaller files. Common uses include extracting a single signed page from a large contract, pulling out just the pages you need from a long scanned document, or breaking a large PDF into chapter-sized files. Page ranges (e.g. "pages 3-7 and 12") are the standard way to specify what to extract, and a decent tool should let you preview thumbnails before committing to a range so you're not guessing at page numbers.

Rotating Pages

Rotation fixes the extremely common problem of scanned documents where some pages landed sideways or upside-down, often because a multi-page document was fed through a scanner inconsistently. Rotation needs to be per-page rather than whole-document, since a scanned packet frequently has a mix of correctly and incorrectly oriented pages. The best tools let you rotate individual pages 90°, 180°, or 270° independently rather than applying one rotation to the entire file.

Compressing PDFs

PDF file size balloons mainly because of embedded images — a PDF built from high-resolution scanned pages or photos can easily reach tens of megabytes, well past what many email systems will accept as an attachment. Compression re-encodes embedded images at a lower resolution or higher compression ratio while leaving the text and vector content untouched, since text in a PDF is already compact. The tradeoff is always image quality versus file size: aggressive compression can introduce visible artifacts in photos, so it's worth previewing the result rather than blindly maximizing compression.

Advertisement

Why These Operations Are Risky to Do Online

PDFs frequently contain sensitive content by nature — signed contracts, financial statements, medical records, ID scans. A server-side PDF tool requires uploading the entire document to someone else's infrastructure just to rotate a page or shave a few megabytes off the file size. That's a lot of exposure for what is fundamentally a local file operation. Any of these four operations — merge, split, rotate, compress — can be done entirely inside a browser tab using WebAssembly-based PDF libraries, with the file never leaving your device.

A Practical Workflow

These operations often chain together. A typical example: scan a multi-page contract (some pages come out rotated), rotate the sideways pages so everything reads correctly, merge in a signed signature page from a separate scan, then compress the final result before emailing it. Doing this with client-side tools means the contract's contents are visible only on your own machine at every step, rather than being uploaded and reassembled somewhere else in between.

Choosing Page Ranges Correctly

When splitting or extracting, page numbers in most PDF tools are 1-indexed and refer to the position in the file, not any printed page number the document itself might display (a document with a cover page, for instance, might show "Page 1" on what is actually the second page of the PDF). Always double-check a page preview rather than relying on printed numbers within the document.

Quick FAQ

Does merging PDFs change the formatting of the original files? No — a proper merge tool preserves each source PDF's pages exactly as they were, simply placing them in sequence in the new file.

Will compressing a PDF make text blurry? No — compression targets embedded raster images; the actual text content of a PDF (unless it's a scanned image of text) is vector-based and unaffected by image compression settings.

Is it safe to run these operations on a signed or legally binding document through an online tool? Only if the tool processes the file client-side. A server-side tool means a copy of your signed contract or legal document is transmitted to and processed on infrastructure you don't control.

Work With PDFs Instantly

DataBench offers a full set of client-side PDF tools: Merge, Split / Extract Pages, Rotate Pages, and Compress. Every one of them runs entirely in your browser — your documents are never uploaded anywhere.

Advertisement