Docento.app Logo
Docento.app
Office printer on a desk
All Posts

How to Change PDF Page Size Without Losing Content

April 29, 2026·8 min read

Every PDF page has a defined size, Letter, A4, A3, Legal, or some custom dimension. That size is baked into the file. When you need to change it, to fit a different paper format, to standardize a mixed-page document, to prepare for print, or just because someone exported the PDF at the wrong size, the conversion is straightforward, but the choices around it deserve more attention than they usually get. This guide walks through changing PDF page size cleanly.

Why change page size at all

A handful of common reasons:

  • Print compatibility. Your office printer is loaded with A4; the PDF is sized for Letter. Without resizing, content gets cut off or the printer adds whitespace.
  • Mixed-page documents. A merged PDF has some Letter pages and some A4. Standardizing makes for a tidier reading experience and predictable print output.
  • Pre-press preparation. A printer asks for specific page dimensions plus bleed; resizing matches their press.
  • Mobile viewing. A page sized for a wall poster does not read well on a phone. Resizing to a more screen-friendly size makes it useful.
  • Form factor. A document originally sized for print needs to be re-sized for digital signage, an e-reader, or a kiosk.

What "change page size" actually means

There are three different operations bundled under the same name:

  1. Change media box. Change the page's reported size without scaling the content. The content stays at its original physical size; the page gets bigger (more whitespace around it) or smaller (some content cropped).
  2. Scale content to new page size. Resize the content along with the page so the visual fills the new dimensions proportionally.
  3. Re-layout content. Reflow the content onto pages of a new size, breaking pages where appropriate. Possible only for documents whose source is reflowable (Word, HTML); not generally feasible for arbitrary PDFs.

Pick the right one based on what you need. The most common case is #2: scale the whole page (and its content) to a new size, preserving proportions.

Tools that change PDF page size

Adobe Acrobat Pro. Tools → Print Production → Set Page Boxes. Edit Media Box, Crop Box, Bleed Box, Trim Box, and Art Box per page or range. The most precise option for production work.

Foxit PDF Editor / PDF-XChange. Similar capabilities under their Page menus.

LibreOffice Draw. Open PDF → Page → Page Properties → set size. Re-export as PDF. Works for simple documents.

Ghostscript. The most reliable CLI option:

gs -o resized.pdf -sDEVICE=pdfwrite \
   -dDEVICEWIDTHPOINTS=595 -dDEVICEHEIGHTPOINTS=842 \
   -dPDFFitPage input.pdf

This resizes to A4 (595×842 points), fitting content to the new size. See our Ghostscript introduction.

cpdf (Coherent PDF). Lightweight CLI specifically designed for PDF manipulation:

cpdf -scale-to-fit "a4portrait" input.pdf -o output.pdf

Pages get scaled to A4. Beautiful and simple.

Browser-based. Docento.app lets you change page size in the browser, which is faster than installing Acrobat for a one-off job.

Standard page sizes in points

PDFs use points internally (1 point = 1/72 inch). Common sizes:

| Format | Width × Height (points) | Width × Height (mm) | |--|--|--| | Letter (US) | 612 × 792 | 215.9 × 279.4 | | Legal (US) | 612 × 1008 | 215.9 × 355.6 | | A4 | 595 × 842 | 210 × 297 | | A3 | 842 × 1191 | 297 × 420 | | A5 | 420 × 595 | 148 × 210 | | Tabloid (US) | 792 × 1224 | 279 × 432 | | B5 | 499 × 709 | 176 × 250 |

For landscape, swap width and height.

The scale-and-fit operation in detail

When resizing, you have to decide what to do with content that does not exactly fit the new aspect ratio.

A page that is 8.5 × 11 inches (Letter) and a page that is 8.27 × 11.69 inches (A4) have different aspect ratios. Scaling Letter content to A4 either:

  • Fits to width. Letter content fits the A4 width; A4 page has small extra whitespace at the bottom.
  • Fits to height. Letter content fits the A4 height; A4 page has whitespace on the sides.
  • Fits inside (preserves aspect). Content is scaled uniformly to fit within the new page; whitespace appears wherever the aspect mismatch lives. Safest default.
  • Fills (may crop). Content is scaled to cover the new page; some content gets cut off. Useful when whitespace is unacceptable and you can afford to lose edges.
  • Stretches (distorts). Content is non-uniformly scaled to fill the new page. Almost never what you want, it makes everything look squished or stretched.

Use "fit inside" unless you have a specific reason to use one of the others.

When the original content has bleed

For print PDFs with bleed (content that extends 3 mm beyond the trim edge so it survives cutting), changing page size needs to handle the bleed too. Page boxes in a PDF:

  • MediaBox. The full page size including bleed.
  • TrimBox. The final cut size.
  • BleedBox. The size to which the printer should print.
  • ArtBox. The size of the meaningful content.

When resizing, decide whether you are resizing the trim (most likely) and letting the bleed scale proportionally, or resizing the media box only and updating trim/bleed separately. For pre-press resizing, use Acrobat Pro's Set Page Boxes for fine control.

Mixed-size documents

A merged PDF often has mixed page sizes, half Letter, half A4, plus a tabloid section in the middle. To normalize:

cpdf -scale-to-fit "a4portrait" mixed.pdf -o uniform.pdf

Every page becomes A4 portrait, with content scaled proportionally.

For preserving certain pages at their original size (e.g., keep the wide schematic at tabloid but resize the rest to A4):

cpdf -scale-to-fit "a4portrait" mixed.pdf 1-10,12-20 -o uniform.pdf

This applies the resize only to the listed page ranges, leaving page 11 at its original tabloid size.

Headers, footers, and watermarks survive

When you resize a page, anything baked into the content stream, text, images, watermarks, scales with the page. If your watermark was a corner stamp, it stays a corner stamp at the new size, proportionally. See how to add a watermark to PDF.

If you added headers and footers as a separate operation (e.g., Acrobat's automated header tool), the resize may or may not preserve them depending on the tool. Test before relying on it.

Common gotchas

Resize without scaling content. If your PDF tool changes the media box but not the content, you end up with a larger page where the content sits in one corner. Always verify that "scale content" is selected.

Anti-aliased text becomes blurry. Bitmap fonts (rare in modern PDFs) lose quality when scaled. Vector text scales perfectly.

Embedded images get blocky. Images at fixed resolution may look pixelated when scaled up. For large upscaling, replace images with higher-resolution originals before resizing.

Line weights at the new size. A 1-point hairline at Letter becomes a 0.93-point hairline at A4. Usually imperceptible; for ultra-precise print work, verify.

Hyperlinks shift. Clickable areas in the PDF are coordinate-based. They should resize along with the page in most tools, but verify clickable links after resizing.

Form fields shift or break. PDF form fields with absolute coordinates may misalign after a page size change. Test forms after resizing. See how to fill out a PDF form for the user side.

Quick recipe for the typical case

You have a Letter PDF and need A4:

  1. cpdf -scale-to-fit "a4portrait" letter.pdf -o a4.pdf
  2. Open a4.pdf and verify content looks correct
  3. Done

If you have only one PDF to resize and prefer a browser:

  1. Open Docento.app
  2. Upload the PDF, change page size, save
  3. Done

For batch jobs across hundreds of PDFs:

for f in *.pdf; do
  cpdf -scale-to-fit "a4portrait" "$f" -o "out/$f"
done

Special case: changing only orientation

Sometimes you do not need a new size, you just need to flip portrait to landscape (or vice versa). This is technically a separate operation. See how to change PDF orientation.

Takeaway

Changing PDF page size is well-supported across tools. cpdf and Ghostscript handle CLI batch jobs cleanly; Acrobat Pro and similar editors give per-page control. Use "fit inside" scaling unless you have a specific reason to crop or distort. For mixed-size documents, normalize once and forget about it. For one-off resizing without installing software, Docento.app handles the operation in the browser. Whichever path you take, always verify the result visually before sharing, a resize that subtly truncates content is one of the easier PDF mistakes to miss.

Related Posts