You need to print a contract on A4, but the PDF was created on US Letter. You click a crop tool, drag the page edges inward, and download the result. On paper, the signature block is missing. The file wasn't resized. It was cropped.
That mistake happens because resize pages in PDF can mean several different operations. You might scale the content, crop the visible area, or change the page box that defines the document canvas. Those actions can produce similar-looking previews, but they behave very differently when a printer, filing portal, or document viewer processes the file.
Table of Contents
- Why Resizing a PDF Is Trickier Than It Looks
- Resizing PDF Pages in Your Browser with PDFWix
- Resizing PDF Pages in Adobe Acrobat, Preview, and LibreOffice
- Command-Line Methods with Ghostscript and qpdf
- Scaling Content, Cropping, or Changing the Page Box
- Batch Resizing and Handling Mixed Page Sizes
- Troubleshooting Common PDF Resize Problems
Why Resizing a PDF Is Trickier Than It Looks
A PDF page has a declared physical canvas and a collection of content positioned on that canvas. The MediaBox is the mandatory rectangle that defines the full page, while the optional CropBox controls what viewers display or print. If a CropBox isn't present, viewers commonly fall back to the MediaBox, as explained in the PDF page-box documentation.
The practical distinction is simple:
- Scaling changes the size of the marks on the page.
- Cropping changes the visible frame without necessarily changing the underlying content.
- Page-box editing changes the page dimensions declared by the PDF.
Practical rule: If the goal is a different paper size, don't start with a crop tool.
A contract prepared for US Letter may contain text, tables, signatures, and annotations close to the page edges. Cropping can hide those objects. Changing the page box can leave content outside the visible area. Scaling can preserve the complete layout, but it may make text and form fields smaller than expected.
The problem becomes more obvious across international workflows. A4 measures 210 × 297 mm, while US Letter measures 8.5 × 11 inches, or 215.9 × 279.4 mm. In PDF points, A4 is 595.28 × 841.89 points, and US Letter is 612 × 792 points, so moving between them requires a deliberate choice about both page geometry and content placement. These dimensions are documented in the overview of PDF paper-size standards.

The rest of the workflow depends on identifying which operation your tool performs. A print dialog may scale content, a crop utility may only edit the visible frame, and a professional preflight tool may rewrite page boxes directly. Pick the operation first, then choose the software.
Resizing PDF Pages in Your Browser with PDFWix
For a one-off job, a browser-based workflow is often faster than installing desktop software or configuring a command-line pipeline. PDFWix's resize tool is designed around the common sequence: upload the document, choose the target dimensions, decide how content should behave, preview the result, and download the revised PDF.
The browser workflow
Open the PDF resizer, then drop the file into the upload area. After the document loads, choose a standard page format such as A4 or Letter, or enter custom width and height values if the destination has its own specification.
The important choice is the treatment of existing content. Select a scale-content option when every mark must remain visible inside the new page. Choose a crop-oriented option only when you intentionally want to remove material outside the new frame. The preview is where you should inspect signatures, footnotes, page numbers, tables, and edge-to-edge graphics.
A reliable sequence looks like this:
- Load the PDF: Confirm that the correct file and all expected pages appear.
- Set the target page size: Use a standard format or custom dimensions.
- Choose the content behavior: Scale the layout or crop the visible page area.
- Preview representative pages: Check the first page, a dense page, and any page with signatures or diagrams.
- Download the result: Open the output in a separate viewer and verify its page dimensions before sending it to print or upload.
The operation matters because changing the page box and scaling content are separate tasks. Adobe's explanation of print page scaling options distinguishes options such as Fit, Shrink oversized pages, Actual size, and Custom Scale. Custom Scale applies a precise enlargement or reduction to the content, while changing the page frame alone doesn't perform that same adjustment.

PDFWix processes its browser tools client-side, so the file remains in the browser for supported operations. That's useful for contracts, HR records, and student submissions where avoiding an upload is part of the workflow. For a very large file, a password-protected PDF, or a repeatable folder-wide job, a desktop or command-line tool may be more practical. For editing, signing, and related browser tasks, see PDF editing guidance.
Resizing PDF Pages in Adobe Acrobat, Preview, and LibreOffice
Desktop tools do not all resize a PDF in the same way. Some change the page box, which alters the canvas, while others scale the content during export or reconstruction. That distinction determines whether text stays the same size, moves within a new frame, or gets rewritten.
Adobe Acrobat
In Acrobat Pro, Organize Pages handles page inspection, rotation, reordering, and related page management. For a true page-box adjustment, use the Page Size controls under Print Production. Acrobat's print-sizing options include Fit, Actual Size, Shrink oversized pages, and Custom Scale.
These controls separate the two operations clearly. You can change the physical canvas, scale the contents into that canvas, or apply both. That flexibility suits legal filings and publishing workflows where page dimensions, margins, and print output must remain predictable. Acrobat can become slow and memory-intensive with huge scanned batches, particularly when each page contains large raster images.
macOS Preview
Preview follows a simpler export-based model. Choose File > Export, select PDF, and set a custom width and height when those fields are available. The resulting file generally scales the content into the new dimensions rather than exposing detailed MediaBox and CropBox controls.
Preview is practical for quick office documents and basic print preparation. It becomes a poor fit for precision work involving complex page boxes, production marks, forms, or encrypted files. Exporting may also change detail or object behavior, so compare representative pages with the original before replacing it. If compression is the actual goal, follow this Preview PDF size reduction workflow, since reducing file weight and changing page dimensions require different checks.
LibreOffice Draw
LibreOffice Draw imports the PDF as editable objects. Adjust the page style dimensions to change the page frame, then inspect the reconstructed content before exporting. This can help with mixed-size documents where individual pages need attention, but it is not a transparent PDF editor.
Multi-column layouts, layered graphics, and unusual fonts expose the main trade-off. Draw may shift objects or alter spacing during import and export, so use it for controlled edits rather than automatic conversion of a complicated publication.
| App | Operation performed | Best for | Known limitation |
|---|---|---|---|
| Adobe Acrobat Pro | Page-box editing and content scaling | Production work, filings, controlled print output | Can struggle with huge scanned batches |
| macOS Preview | Export-based scaling into a new page size | Quick desktop resizing and simple documents | Limited precision and issues with encrypted files |
| LibreOffice Draw | Page-style adjustment with editable object reconstruction | Mixed-size documents and basic page edits | Complex multi-column layouts may shift |
Each application chooses between page-box changes and content scaling differently, so select the tool that matches the operation your document requires.
Command-Line Methods with Ghostscript and qpdf
Command-line tools suit repeatable work across large PDF libraries. They apply the same settings to every file, preserve an auditable process, and make the distinction between changing the page box and rewriting content explicit.
Ghostscript handles content scaling and recompression. A typical command is:
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook -dNOPAUSE -dBATCH -sOutputFile=output.pdf input.pdf
The /ebook preset changes processing, including image handling and recompression. It may simplify the output, but Ghostscript rewrites the document. Avoid applying it without review to an already optimized PDF or one containing delicate vector artwork.
For an A4 target, add:
-sPAPERSIZE=a4
This sets paper-size behavior, but it does not define both dimensions as precisely as:
-dDEVICEWIDTHPOINTS=595.28 -dDEVICEHEIGHTPOINTS=841.89
Those values match A4 PDF points. Use the pair together and preserve the intended aspect ratio, or content may appear stretched or compressed.
qpdf fits page-box edits that should leave page content encoded:
qpdf --page input.pdf 1-z --media-size=595x842 output.pdf
The command changes the MediaBox across the selected pages without sending content through a full Ghostscript rewrite. That makes it useful when visual fidelity and existing encoding matter. It changes the page canvas, however, and does not automatically scale content to fit.
A combined workflow can change the page box with qpdf, then use Ghostscript for scaling or recompression. Test the sequence on a copy. Repeated processing can affect fonts, transparency, annotations, and image quality. For scheduled or folder-based jobs, PDF automation workflow guidance can help structure the process.
Once you know which operation the tool performs, the next question is how to handle files in bulk.
Scaling Content, Cropping, or Changing the Page Box
The difficult cases arise when a PDF needs both a different canvas and a different content scale. A Letter page placed on A4, for example, may require a narrower page box plus proportional reduction of its contents. Changing only the box can clip marks near the edge, while scaling alone can leave the file declaring the wrong physical size. Apply the page-box edit first when the target geometry matters, then scale against that geometry and inspect the result at actual print size.
Forms require a stricter test. Scaling may move labels and fields away from their expected physical positions, while a box change can expose blank margins or hide content. Preserve the original for reference, and compare form fields, annotations, and signature areas after either operation. Some viewers display CropBox while print dialogs use MediaBox or their own fit setting, so a page can look correct on screen yet print with unexpected margins.
Cropping has a narrower purpose. It suits scanner borders and unwanted background, but content beyond the visible boundary can remain in the file. Use a PDF cropping tool when the frame needs trimming. Choose page-box editing when downstream software must read a consistent physical canvas, then scale content separately if it must fill that canvas.
| Your Goal | Recommended Sequence | Check Before Delivery |
|---|---|---|
| Fit Letter content onto A4 | Set the A4 page box, then scale content | Small text, margins, and aspect ratio |
| Remove scanner edges | Crop, then inspect hidden content if privacy matters | Visible borders and retained page objects |
| Prepare pages for 2-up printing | Establish page boxes, then impose pages | Rotation, gutters, and printer fit settings |
| Print at a specified physical size | Set the page box, then scale only if required | MediaBox, CropBox, and print-dialog behavior |
| Standardize inconsistent pages | Edit each page's box, with per-page scaling where needed | Wide pages, annotations, and empty margins |
Keep a copy before combining operations. Repeated edits can alter annotations, transparency, fonts, or image quality, and a viewer may not honor every page box the same way. Final validation should include a rendered preview and a physical-size print test when production output matters.
Batch Resizing and Handling Mixed Page Sizes
Real document collections are rarely uniform. A legal binder may combine Letter pleadings with exhibit tabs. An academic packet may place portrait pages beside wide-format figures. Office archives often contain scans created with different settings over many years.
For a folder that needs one standard output, a shell loop can call Ghostscript for each file and apply an -sPAPERSIZE setting. The exact loop depends on the shell and operating system, but the operating principle is consistent: write each result to a separate output folder, preserve the originals, and log failures instead of overwriting files.
qpdf is more suitable when page-level control matters. A Python or PowerShell script can inspect each page, select it through qpdf's --pages syntax, and apply a different MediaBox where required. That avoids forcing a wide-format figure into a standard canvas just because the rest of the document is standard.
For mixed orientations, inspect each page's rotation and MediaBox with pdfinfo. Route pages with horizontal dimensions through one branch and pages with vertical dimensions through another, then merge the results with qpdf or pdftk. This keeps the decision at page level rather than applying one global setting to an incompatible document.
Batch rule: Never normalize a mixed document until you've classified its pages.
Page-size inheritance creates another trap. Some viewers honor only the first page's MediaBox or interpret later pages inconsistently. A mixed-size PDF may need explicit per-page CropBox values or an appropriate OpenAction setting so that rendering and printing behave predictably.
Before processing a folder, create a validation pass that checks page count, dimensions, rotation, and whether the output opens successfully. For documents that need to retain different page formats, use a workflow built for merging PDFs with different page sizes, then inspect the merged file rather than assuming the source geometry survived unchanged.
Troubleshooting Common PDF Resize Problems
Three failures appear repeatedly after a resize job: oversized white margins, stretched text, and content clipped at the page edges. Each points to a different mistake, so rerunning the same command usually won't fix it.
Oversized white margins
Large margins often mean the page box changed without repositioning or scaling the content. Re-export with the intended MediaBox and review the printer margins defined in the source document. A CropBox adjustment may hide the problem in a viewer without producing the physical print area you need.
Horizontally stretched text
Stretched text usually indicates that width and height were treated independently. Re-run the job with proportional scaling, or pair -dDEVICEWIDTHPOINTS with -dDEVICEHEIGHTPOINTS so both target dimensions are explicit. Ghostscript's -dPDFSETTINGS pipeline can also provide a more controlled rewrite when the source file needs recompression.
Content cut off at the edges
Clipping means the visible page boundary is smaller than the content area, or the content was moved beyond the new bounds. Inspect the file in Acrobat preflight or use pdfinfo to confirm the page dimensions and identify whether objects extend outside the visible box. Remember that a visual crop and a content crop aren't interchangeable.

Before producing a large batch, run this short recovery checklist:
- Clear the working state: Remove stale temporary output and restart the tool or shell process.
- Check one result: Verify page dimensions, orientation, signatures, and edge content.
- Compare the source: Open the original beside the resized file at the same zoom level.
- Scale carefully: Confirm that width and height use the same proportional treatment.
- Validate before distribution: Print or upload a test copy before processing the complete set.
PDFWix provides browser-based tools for changing PDF page sizes, cropping, editing, merging, and related document tasks without installing desktop software. For a quick one-off resize, inspect the preview, verify the output dimensions, and visit PDFWix to choose the workflow that matches your document.