How to Resize PDF Pages

Change a PDF's page size without losing content or quality — whether it's a single file or a whole batch.

← Back to Blog

How to Resize PDF Pages

Quick summary

Quick answer: You can resize PDF pages by changing the MediaBox dimensions (which re-crops or re-pads the page), scaling the page content to fit a new size, or both. Adobe Acrobat's Crop Pages dialog handles most single-file cases; online tools like Mapsoft's PDF Hub Resize Page work without installation; and Mapsoft's MediaSizer and ContentScaler plugins handle batch workflows.

You can also resize PDF pages online for free using Mapsoft's PDF Hub — no installation required.

What "resizing a PDF page" actually means

A PDF page has a physical size, declared in a dictionary entry called the MediaBox. This is the rectangle the reader paints onto the screen or the sheet of paper. Changing the MediaBox changes the page's logical size — it makes the "sheet" larger or smaller — but it doesn't automatically change what's drawn on that sheet. The content inside the page is described by a separate stream of drawing operators that are positioned in absolute coordinates.

That means there are two fundamentally different operations people describe as "resizing":

  • Changing the page size. The MediaBox changes; the content stays put. If the new page is smaller, content near the edges is cropped off. If it's larger, the content stays in its original position and the new space around it is blank.
  • Scaling the content. The drawing operators themselves are transformed — shrunk or enlarged. The page proportions stay the same, but the content now fills the new size.

Most real-world "resize" requests are a combination: change the page to a standard size and scale the content to fit. Knowing which you want — and which a given tool actually does — saves a lot of frustration.

Common reasons to resize PDF pages

  • Standardizing a document set. A 200-page archive where some pages are US Letter and others are A4 is hard to print and review. Resizing them all to one standard makes the set consistent.
  • Print preparation. A pre-press workflow often requires specific MediaBox and BleedBox dimensions; an incoming PDF at an arbitrary size needs to be resized to match the press sheet.
  • Reducing file size and page count for display. An A0 engineering drawing is useless on a phone. Scaling it down to A4 — while keeping the vector content intact — produces a more portable copy.
  • Making small documents easier to read. Scanned forms that come in at 2×3 inches can be scaled up to A4 for comfortable reading.
  • Matching a template. Some publishing platforms, regulators, and document-management systems accept only a specific page size; resizing brings existing documents into compliance.

Resize methods: from single file to batch

Method 1 — Adobe Acrobat's Crop Pages dialog

In Acrobat Pro, open the PDF and go to Tools → Edit PDF → Crop Pages (the exact path changed a few versions ago; in newer builds it's Edit → Crop Pages). The dialog lets you set a new page size in points, millimetres, or inches; pick from a list of named paper sizes; or enter custom dimensions.

Crop Pages in Acrobat changes the CropBox by default, not the MediaBox. The difference matters: CropBox only changes what's displayed; the content beyond the crop is still in the file. Use the "Remove White Margins" option and set "Change Page Size" to the target dimensions to actually resize the MediaBox. Save As a fresh copy rather than overwriting the original.

Method 2 — Resize online for free

Mapsoft's Resize Page tool runs in the browser. Upload a PDF, pick a standard page size (A4, Letter, Legal, A3, and so on) or enter custom dimensions, and download the resized file. It's the fastest option for a single document on a machine where you don't have Acrobat, and it handles both page-size changes and content scaling in a single pass.

The online tool is intended for interactive, one-file-at-a-time use. For batch processing — resizing every file in a folder, or running it as part of a workflow — use a plugin or command-line tool instead.

Method 3 — MediaSizer (for MediaBox changes) and ContentScaler (for content scaling)

Mapsoft publishes two Acrobat plugins that split the job cleanly along the two operations above. MediaSizer changes the MediaBox, CropBox, and other page boxes with precision controls, without touching the drawing content. ContentScaler rescales the content within a page to fit a new size, without touching the MediaBox. Used together they cover every resize scenario, and both support batch processing across folders, which the online tool doesn't.

These are the right tools when you're doing the same resize operation repeatedly — e.g. converting a weekly batch of engineering drawings to a standard size for a CMS, or preparing hundreds of files for a print run.

Method 4 — Command line (qpdf, Ghostscript)

For fully automated pipelines, Ghostscript's gs command can resize pages using PostScript device options. A typical A4 resize:

  • gs -o output.pdf -sDEVICE=pdfwrite -sPAPERSIZE=a4 -dFIXEDMEDIA -dPDFFitPage input.pdf

The -dPDFFitPage flag scales content to fit; omit it to change the MediaBox without scaling. Ghostscript is powerful but the learning curve is real; for one-off jobs the GUI tools above are faster.

Cropping vs resizing vs scaling: keeping them straight

Mixing these up is the single most common reason a "resize" job produces something unexpected. Here's the clean mental model:

  • Crop changes what's visible. The underlying content is untouched; the CropBox just masks part of it. Easy to undo because nothing was removed.
  • Resize (MediaBox change) changes the physical page size. Content beyond the new edges is hidden but usually not deleted. The visual effect looks identical to a crop, but the page's printed size actually changes.
  • Scale transforms the content itself. The page size can stay the same while the content shrinks or grows, or both can change together proportionally.

When you read tool documentation, look for the words they use. "Resize to A4" might mean "change the MediaBox to A4 dimensions" (content might now overflow), "scale content to fit A4" (content shrinks), or both. Before running a tool on a large batch, test on a single file and verify the output looks like what you intended.

Preserving quality when resizing

Resizing that only changes the page box has no quality impact — it's a metadata edit. Resizing that scales content is more delicate.

  • Vector content scales cleanly. Text, lines, and vector illustrations stay crisp at any scale because they're described mathematically.
  • Raster images lose detail when scaled up. A 300 DPI image scaled to 150% becomes a 200 DPI image on the new page. For print, this can fall below acceptable thresholds. Check the resolution of critical images after resizing.
  • Fonts should be embedded. Scaling doesn't affect font embedding, but a PDF that relies on a missing font will look worse after a re-export. Make sure the output has all fonts embedded or subsetted.
  • PDF/A and PDF/X conformance survives most resize operations, but always re-validate a resized file if you need it to meet an archival or pre-press standard.

Frequently Asked Questions

Will resizing a PDF reduce its quality?

Changing the page box only (without scaling content) has no quality impact. Scaling content up can stretch raster images beyond their native resolution; scaling down is usually fine. Vector content and embedded fonts scale cleanly.

How do I resize a PDF to A4?

In Acrobat, use Crop Pages → Change Page Size → A4. Online, use a tool like Mapsoft's PDF Hub Resize Page and pick A4 from the standard sizes dropdown. For batches, use MediaSizer or a Ghostscript command with -sPAPERSIZE=a4.

Can I resize PDF pages without Adobe Acrobat?

Yes. Online tools like Mapsoft's Resize Page handle individual files for free. For automated batches, Ghostscript, qpdf, and Mapsoft's MediaSizer/ContentScaler plugins all work without Acrobat.

What's the difference between resizing and cropping a PDF?

Cropping changes what's visible without changing the page's physical size or the underlying content. Resizing changes the page's actual dimensions — the printed or displayed size. Tools often conflate the two; check the documentation before running on important files.

Can I batch-resize PDF pages?

Not with the standard online tools, which process one file at a time. For batch work use Mapsoft's MediaSizer or ContentScaler plugins, Ghostscript scripts, or an Acrobat action. Mapsoft's plugins are the most convenient option if you're already in an Acrobat workflow.

Mapsoft MediaSizer and ContentScaler

For routine batch resizing inside Adobe Acrobat, MediaSizer handles MediaBox changes and ContentScaler handles content scaling. Both are available for a free trial.

Related Articles

PDF Page Boxes: MediaBox, CropBox & More

The five page boxes every PDF has, what each one does, and which ones a resize operation actually changes.

How to Reduce PDF File Size Without Losing Quality

If you're resizing to make a file more portable, compression is usually the bigger lever. Walk through both.

Printing PDFs: Options, Drivers & Best Practices

Resizing for print has specific considerations — bleed, trim, safety margins. This post covers the print-side pipeline.

Try it yourself

Free online — no installation, no sign-up.