PDFApril 2026 · 6 min read

How to Flatten a PDF (2026)

Flattening a PDF means baking every editable element — form fields, annotations, signatures, comments, layers — into the page content so they become part of the document itself and can no longer be modified. It's the final step for documents you're sending out as "final" versions: a signed contract that shouldn't be altered, a completed form for archival, a redacted report where you want annotations to be non-removable. This guide covers when to flatten, how, and what flattening does and doesn't do.

📃
Try the PDF Flattener
Free, preserves quality
DG
Derek Giordano
Designer & Developer
In this guide
01What Flattening Actually Does02When to Flatten03Method 1: UDT PDF Flattener (Free, Browser-Based)04Method 2: Acrobat and Print-to-PDF
⚡ Key Takeaways
  • Flatten PDF forms, annotations, and layers into the page content — free, in your browser.
  • What Flattening Actually Does.
  • When to Flatten.
  • Covers method 1: udt pdf flattener (free, browser-based).
  • Covers method 2: acrobat and print-to-pdf.

What Flattening Actually Does

A PDF can contain interactive and editable elements alongside its static page content. Form fields are editable text boxes that live separately from the page's printed content. Annotations (highlights, sticky notes, shapes, comments) are overlays stored as separate objects. Signatures can be drawn as interactive widgets. Layers in complex PDFs (CAD drawings, translated documents) can be shown and hidden independently. All of these are mutable by default.

Flattening takes every one of those mutable elements and merges them into the page's static content. A signed signature becomes part of the page image rather than a removable signature object. Form fields get converted to static text at their current values. Annotations become part of the page rather than separate objects. After flattening, the document is visually identical but structurally simpler — and the editable components no longer exist as editable.

The result is a PDF that looks the same but behaves differently. A recipient can't delete your annotations, modify your form field values, or remove your signature. They also can't fill in blank form fields (because the form fields are gone) or add their own annotations in most viewers without re-parsing the flattened document.

When to Flatten

Flatten after signing. A signed PDF where the signature is still an interactive widget can be deleted by anyone who opens the file. Flattening fuses the signature to the page permanently. Pair this with the PDF signer for any signature workflow.

💡 Tip
Always include -webkit-backdrop-filter alongside backdrop-filter for Safari support. Without the prefix, the effect is invisible to roughly 25% of mobile users.

Flatten after filling a form. A form you've filled out still has editable fields by default — the recipient could change your answers before archiving. Flattening locks in the values so the filed form is the filed form. This is standard practice for tax filings, HR submissions, and anything you're keeping as a record of what was sent.

Flatten after redaction. Redaction should remove underlying content, but flattening adds a second layer of assurance: even if annotations or structural elements slipped through, flattening renders the page as a static image and strips the remaining editable elements. For public releases of redacted documents, this is belt-and-suspenders.

Flatten before archiving. For documents going into long-term storage (legal archives, compliance records, historical files), flattening reduces the risk that a future software update breaks the file's editable components. A flat PDF is simpler, more portable, and more likely to render correctly decades from now.

Method 1: UDT PDF Flattener (Free, Browser-Based)

The UDT PDF Flattener processes PDFs entirely in your browser. Drop in your file, the tool identifies and merges all editable elements into the page content, and you download the flattened version. Nothing uploads. For the kind of documents people typically flatten — signed contracts, completed forms, redacted files — local processing matters.

⚠ Warning
On iOS Safari, backdrop-filter inside a position: fixed element can cause severe scroll performance issues. Test thoroughly on real iOS devices.

The workflow: drop the PDF in, choose which elements to flatten (default is everything: form fields, annotations, signatures, layers), and export. You can preview the flattened result before downloading to verify nothing visually changed. The tool preserves the original document quality exactly — no re-rasterization or compression during flattening.

One trade-off to know: flattened PDFs can't be unflattened. There's no reverse operation that turns static content back into editable form fields. If there's any chance you'll need the document to remain editable, keep the original pre-flatten version filed separately before shipping the flattened copy.

Method 2: Acrobat and Print-to-PDF

Acrobat Pro has flattening under Print Production → Flattener Preview, or via Save As → Optimized PDF with flatten options. Adobe's implementation is thorough but somewhat hidden in the UI — most users don't know it exists. For professionals who already pay for Acrobat, it's there when you need it.

The print-to-PDF workaround works in any application. Open the PDF, File → Print, select "Save as PDF" as the printer, and print. The resulting file is effectively flattened because the print process renders each page and re-exports as static content. Quality can degrade (depending on print driver settings), and interactive elements are lost, but for a quick one-off flatten with no dedicated tool, it works.

Command-line tools (qpdf, Ghostscript) can flatten via specific command flags. qpdf's `--flatten-annotations` handles annotations; Ghostscript's `-dSAFER -dBATCH -dNOPAUSE` pipeline can fully flatten. These are the tools document-processing services use internally.

Frequently Asked Questions

Can a flattened PDF be unflattened?+
No. Flattening is destructive — the editable elements are merged into the page content and can't be separated back out. If you need to retain the ability to edit form fields or remove annotations, keep the original file before flattening.
Does flattening reduce PDF file size?+
Usually slightly. Removing separate annotation and form-field objects simplifies the PDF structure. The savings are modest for most files — typically 5–15%. For aggressive size reduction, pair flattening with a dedicated PDF compressor.
Will flattening affect how the PDF looks?+
No — a properly implemented flattener preserves visual appearance exactly. The page looks identical before and after. If you notice quality changes, the flattener may be rasterizing pages unnecessarily; try a tool that preserves vector content.
Can I fill a flattened PDF form?+
No. Once a form is flattened, the fields no longer exist as editable fields — they're static text on the page. Fill the form first, then flatten; never flatten an empty form you intend to send someone to fill out.
Does flattening remove metadata?+
Some metadata, not all. Flattening removes structural metadata tied to annotations and form fields, but document-level metadata (author, creation date, title) is preserved. For full metadata removal, combine flattening with an explicit metadata-strip step.
Try it yourself

Free, preserves quality

⚡ Open PDF Flattener
DG
Derek Giordano
Written by the creator of Ultimate Design Tools. BA in Business Marketing.
📚 References & Further Reading