← All FAQ questions

Accessibility & Compliance

What Is PDF/A Format? (The Archiving Standard, Explained)

The short answer

PDF/A is a strict version of the PDF format built for long-term archiving — it guarantees the file will open, look, and print the same way decades from now. It does this by forbidding the things that age badly: external fonts, JavaScript, encryption, and audio or video. If you’re archiving documents that must survive, PDF/A is the format.

Why PDF/A exists

Regular PDFs are flexible — they can link to fonts, embed multimedia, even run code. That flexibility is a problem for archives: a PDF that depends on a font from 2005 may render wrong in 2040 when that font is gone. PDF/A solves it with rules: everything must be embedded (fonts, color profiles) and nothing external or executable is allowed. The result is a self-contained file with no dependencies on anything.

What PDF/A means for your documents

  • Archives and libraries — the classic use case. If your institution stores documents for decades, PDF/A is the standard.
  • Legal and government — many courts and agencies require PDF/A for filings because it is stable and tamper-evident.
  • Anything you must keep as is — an invoice archive, old contracts, permanent records.

If you’re just sending a document to someone, regular PDF is fine — PDF/A’s constraints (no forms, no JavaScript, stricter fonts) would only get in the way.

The honest part

Three things people discover the hard way:

  • Converting is easy but picky. Tools convert PDFs to PDF/A, but the file fails validation if anything non-compliant is inside — an unembedded font, a form field, encrypted content. The converter tells you; you fix and retry.
  • PDF/A is not the same as accessibility. People mix these up constantly. PDF/A is about longevity; accessibility is about screen readers. A PDF can be PDF/A without being accessible, and vice versa — though for public-sector work you often need both.
  • It’s not the default. Unless you’re archiving or filing somewhere that requires it, don’t bother converting. The PDF you already have is fine.

Related questions