What Is PDF/A? The Archival PDF Format Explained
Most PDFs are created to be read soon after they're made. PDF/A exists for the opposite case: documents that need to remain readable, unchanged, and self-contained for years or decades โ court records, government archives, academic theses, medical files. If you've been told a document "must be PDF/A" for a submission, here's what that actually means.
The core idea: total self-containment
A regular PDF is allowed to reference things outside itself โ a font installed on the viewer's system, an external link, interactive JavaScript, encrypted content, or audio and video that depends on a particular media codec. Any of those can stop working, or work differently, on a computer decades from now, or on a computer today that simply lacks the same fonts or codecs. PDF/A closes off these dependencies. Every PDF/A file must:
- Embed every font it uses, rather than relying on the viewing device to have it installed.
- Avoid encryption, since a password or key could be lost, permanently locking future access.
- Avoid embedded audio, video, and executable JavaScript, since these depend on software that may not exist in the future.
- Use a device-independent color specification, so colors don't shift depending on the viewer's screen or printer profile.
- Include specific metadata describing the document in a standard, machine-readable way.
The result is a file that a compliant reader โ today or in 2060 โ can open and render exactly as intended, without needing anything beyond the file itself.
PDF/A is a family, not one format
| Version | What it adds |
|---|---|
| PDF/A-1 (2005) | The original standard, based on PDF 1.4. Strictest; no transparency or layers. |
| PDF/A-2 (2011) | Based on newer PDF versions; allows transparency, layers, and JPEG2000 images. |
| PDF/A-3 (2012) | Same as A-2, but permits embedding non-PDF/A files (e.g. the original spreadsheet behind an invoice). |
Each version also has conformance levels (commonly "B" for basic visual reproduction and "U" for guaranteed text extraction/searchability), which matter for specialized archival requirements but are usually beyond what a typical user needs to think about.
Who actually needs PDF/A?
- Government and legal filings โ many courts and agencies mandate PDF/A for permanent records.
- Libraries and archives โ institutions responsible for preserving documents indefinitely.
- Healthcare records systems โ patient records often must remain accessible for years under regulatory retention requirements.
- Academic institutions โ many universities require theses and dissertations in PDF/A.
- Corporate records retention โ companies with formal document-retention policies for compliance purposes.
If none of these apply to you, a regular PDF is almost always sufficient โ PDF/A solves a specific long-term-preservation problem that most everyday documents don't have.
Why PDF/A files are often larger
Because PDF/A requires embedding every font in full (rather than relying on common system fonts) and disallows some efficient compression filters used for maximum size reduction, PDF/A files frequently run larger than a casually-exported PDF with equivalent visible content. That's a deliberate trade-off: the standard prioritizes guaranteed future fidelity over minimal file size. See why is my PDF so large? for the full breakdown of what makes any PDF grow.
How to tell if a file is PDF/A
Most full-featured PDF readers (including free ones) show document properties that state the PDF version and, if applicable, PDF/A conformance level. Look for a field labeled something like "PDF/A conformance" or check the document's XMP metadata. If a form or portal explicitly requires PDF/A and you're not sure whether your export tool produces it, check that tool's export settings for a "PDF/A" or "Archival" option specifically โ a standard "Save as PDF" does not automatically produce a PDF/A file.