Tutorial

How to Crop PDF Pages Free Online (No Upload)

Five free ways to crop PDF page margins — single page, batch, or auto-trim. Two methods run entirely in your browser and never upload the file. The rest are honest comparisons of the big online tools, with the limits and quirks each one hides.

PDF Mavericks Team
April 30, 2026
10 min read

When You Actually Need to Crop a PDF

Five situations cover almost every PDF crop request. Scanned documents come out with thick white margins and sometimes dark borders or shadows along the edges — flatbed scanners and phone-scan apps both leave this kind of mess. Presentation slides exported to PDF often have generous padding around the artwork that wastes screen space when the slides are read on a tablet or e-reader. Academic papers and ebooks have publisher-imposed margins that are too wide for a 6-inch e-reader screen. Technical drawings and maps need the surrounding annotations stripped so the reader can focus on the diagram. And documents merged from different sources end up with inconsistent margins where one page looks centered and the next has a 4 cm white border.

All five cases want a permanent crop — one that survives saving, sharing, printing, and re-rendering on a different device. PDF cropping is non-destructive by design: the content outside the crop box is hidden, not deleted. That is good news for accidental over-cropping (you can undo it in any tool that ignores the CropBox) and bad news for privacy (cropping does not redact). Use the right tool for the right job.

Method 1: Browser-Local Crop (No Upload)

The cleanest path for any PDF you would not want sitting on a third-party server. Browser-local tools run the entire crop in JavaScript or WebAssembly on your device. The file never leaves your computer, and the tool has nothing to log because it never sees the file.

Why this matters for sensitive PDFs

Medical reports, signed contracts, passport scans, bank statements, and payslips should not be uploaded to a free online tool. Even tools that say "your file is deleted after one hour" still hold a copy on their server during processing, and that copy is enough to expose you in a breach. PDF Mavericks is built around this constraint — every tool we ship runs in your browser and never uploads the file.

For cropping specifically, two solid in-browser options today are pdfcrop.github.io (open source, WebAssembly-based) and Pi7 PDF Cropper. Both let you draw the crop rectangle on the page thumbnail and save the result without ever uploading.

PDF Mavericks does not ship a dedicated crop tool yet — it is on the roadmap for the next few weeks. In the meantime, the tools we do ship work the same browser-local way for adjacent jobs:

  • Compress — shrink the cropped output if it is still too big after the crop.
  • Merge — stitch a cropped section back into a larger document.
  • Rotate — fix sideways scanned pages before cropping the margins.

Method 2: iLovePDF, Smallpdf, Adobe Online — Compared

The big three online PDF tool brands all offer cropping. They differ in upload model, free-tier daily limits, and how granular the crop control is. This is a head-to-head of what you actually get on the free tier.

ToolFree LimitPage RangeFile Upload
iLovePDFUnlimitedAll / current pageServer upload
Smallpdf2 tasks per dayAll / current pageServer upload
Adobe Acrobat Online2 free per monthAll / range (account)Server upload
PDFgearUnlimitedAll / current / rangeServer upload
PDF24UnlimitedAll / currentServer upload
pdfcrop.github.ioUnlimitedAll / currentIn-browser, no upload

iLovePDF is the easiest server-based option if upload is not a concern — no daily cap, clean drag-and-drop, and a fast crop preview. Smallpdf has the slickest interface but the 2-tasks-a-day free cap kicks in quickly if you are working through a folder. Adobe's online cropper produces the highest-fidelity output (the same company writes the PDF spec) but the 2-per-month free limit and account requirement make it impractical for daily use. PDFgear is the most generous server-based tool with explicit page-range support on the free tier. PDF24 is similar but does not expose ranges.

For anything you would not put on a server, default to pdfcrop.github.io or another browser-local option from the privacy-first PDF editor list.

Method 3: Auto-Crop for Scanned Documents

Drawing a rectangle on every page of a 200-page scanned book is painful. Auto-crop tools detect the actual content edge per page and crop to it without any manual selection. This is the right method for scanned books, archived journals, and meeting notes captured with a phone camera.

Two reliable auto-crop tools

  1. pdfresizer.com — online, free, has an explicit Auto-crop button. Upload, click Auto-crop, preview the result, save. Works well on scans with consistent margins. Less reliable on pages that have page numbers or footers very close to the content edge — the auto-detect sometimes cuts into them.
  2. Briss — free desktop tool (Windows, macOS, Linux). It overlays every page on top of every other page, finds the bounding box of all content, and applies a single crop across the entire document. Best for academic papers and books where every page should look identical after the crop. Java-based, so you need a JRE installed.

One quirk to know: if your scanned PDF has rotated pages (some sideways, some upright), auto-crop will produce inconsistent results because the bounding box detection sees a different shape per page. Run a rotation pass first to align everything to the same orientation, then auto-crop.

Method 4: Desktop & Command Line for Batches

Repetitive cropping across hundreds of files belongs on the command line. The tools below run offline on your laptop and are scriptable, which means you can wire cropping into a folder watcher or a build pipeline.

pdfcrop (TeX Live)

Ships with TeX Live and MiKTeX. Originally written for trimming whitespace around mathematical figures. Works on any PDF.

# Auto-trim whitespace from input.pdf
pdfcrop input.pdf output.pdf

# Crop with explicit margins (left top right bottom, in pt)
pdfcrop --margins '20 30 20 30' input.pdf output.pdf

# Batch every PDF in a folder
for f in *.pdf; do pdfcrop "$f" "cropped-$f"; done

Ghostscript (low-level)

More verbose than pdfcrop but every Linux distro and macOS box already has it. Useful when you need exact pixel-level control or you cannot install TeX Live.

gs -o cropped.pdf -sDEVICE=pdfwrite \
   -dDEVICEWIDTHPOINTS=400 -dDEVICEHEIGHTPOINTS=600 \
   -dFIXEDMEDIA -dPDFFitPage \
   input.pdf

For one-off batches without command-line setup, Briss (covered above) is the cleanest GUI option.

Method 5 Bonus: Pitfalls That Break Crops

Cropping is not redaction

Cropped content is hidden, not deleted. Anyone who opens the file in Acrobat Pro and edits the CropBox can recover the cut region. For confidential PDFs, redact and flatten — do not crop.

CropBox vs MediaBox in printing

Some printer drivers print the underlying MediaBox instead of the CropBox you set, ignoring your crop entirely. If your cropped PDF prints uncropped, switch viewers (Chrome and Firefox both honor CropBox) or run the file through Ghostscript to flatten the crop into a new MediaBox.

File size barely changes

Cropping a 50 MB scan typically leaves it at 49 MB because the underlying page stream still holds the full image. To actually shrink the file, run it through a compressor after cropping.

Auto-crop misses page numbers

Auto-detect tools sometimes cut into page numbers, footnotes, or headers if those sit close to the content. Always preview before saving. If the layout has running heads, pad the auto-crop margins by 10-20 pt to be safe.

FAQ

Does cropping a PDF actually delete the cropped content?

No. PDF cropping is non-destructive — the content outside the crop box is hidden, not removed. The data still lives inside the file. Anyone who opens the PDF in a tool that ignores the crop box (Adobe Acrobat Pro, command-line pdftk, some viewers) can see and recover the hidden region. If you need to truly remove sensitive content, you have to redact, then flatten the PDF, not crop it.

What is the difference between crop and trim in PDF tools?

Most online tools use the words interchangeably, and both refer to changing the visible CropBox of each page. A small set of tools also offer 'trim margins' as an auto-detect mode that finds the actual content edge and crops to it without you drawing a rectangle. The output PDF is the same shape either way — only the user interface differs.

Can I crop PDF pages without uploading the file anywhere?

Yes. Browser-local tools run the crop in JavaScript or WebAssembly on your device. Examples include pdfcrop.github.io, Pi7 PDF Cropper, SpacePDF, and PDF Smaller. Your file never leaves your computer, so there is no server-side log, no retention period to worry about, and no upload size cap. Sensitive PDFs (medical reports, contracts, passports) should always go through a browser-local tool.

How do I crop only a few pages and leave the rest untouched?

Pick a tool with a page-range field. iLovePDF, PDFgear, and PDF24 all support range mode — type something like 1-3,7 and only those pages get the crop applied. Smallpdf only offers 'all pages' or 'current page' on the free tier, which means you have to repeat the crop for each non-contiguous page if you want partial coverage.

Why does my cropped PDF still look the same in print?

Two reasons. First, some viewers print using the MediaBox (the underlying page size) instead of the CropBox you set, which makes the crop appear to be ignored. Second, the tool may have only rotated the displayed thumbnail without rewriting the page metadata. Test by reopening the saved file in a different viewer (Chrome and Adobe Reader both honor the CropBox). If the crop survives there, the problem is your printer driver settings.

Is there an auto-crop that removes white margins automatically?

Yes — pdfresizer.com has an Auto-crop button that detects the content edge per page and trims to it, which is useful for scanned documents and academic papers. Briss (a free desktop tool) does the same with finer control. The trade-off is that auto-crop sometimes cuts into page numbers or footnotes if the margin detection is too aggressive — preview the output before saving.

Can I crop a password-protected PDF?

You have to remove the password first. Most online croppers will refuse to load a password-protected file, or they will load it but produce a corrupt output. Use a free tool like our PDF unlock flow to clear the open password, crop the pages, and then re-apply password protection if needed. If the PDF only has owner-level restrictions blocking modification, those need to be removed too.

Will cropping reduce the PDF file size?

Usually not by much. Cropping hides content but does not delete it from the underlying page stream, so the file size barely changes. To shrink a cropped PDF, run it through a separate compressor afterwards — the PDF Mavericks compress tool can take a cropped 12 MB scan down to 1-2 MB without touching the visible content.

Does cropping work on PDFs with text, or only on scanned images?

It works on both. PDFs with selectable text keep their text intact after cropping — words that fall outside the crop box are hidden but still searchable in tools that ignore the CropBox. Scanned PDFs are treated as images of pages, and the crop just changes which part of the image is visible. There is no OCR step, so cropping does not improve text searchability on its own.

What is the best free PDF cropper for batch jobs?

For dozens of files at once, the free desktop tool Briss is hard to beat — it visually overlays every page and lets you set one crop rectangle that applies across the batch. For a one-off online run, pdfcrop.github.io and PDFgear both handle large multi-page documents quickly and run in your browser. Avoid Smallpdf for batches; the 2-task-per-day free cap kicks in fast.

Bottom Line

For one-off crops on a sensitive PDF, use a browser-local tool — pdfcrop.github.io is the cleanest open option today. For everyday cropping where upload is fine, iLovePDF gives the most generous free tier with no daily cap. For scanned books and academic papers, auto-crop with pdfresizer or Briss saves hours. For batches, the pdfcrop command line takes about ten seconds to learn and runs offline forever.

We are shipping our own browser-local crop tool to PDF Mavericks in the next few weeks — same no-upload, no-watermark, no-signup model as our existing tools. Until then, the methods above cover every realistic case.