PWPrivatePDFConvertPro

2026-05-04 · 9 min read

PDF/A vs PDF: When to Use Each Archival Format

Most people have never made a deliberate choice between PDF and PDF/A. Then someone — a court clerk, an HR system, a tax authority — rejects their submission because it “must be PDF/A.” Suddenly the difference matters. Here’s what PDF/A actually is, why it exists, the four conformance levels, and when you should care.

Why a separate archival standard exists

Regular PDF is enormously flexible. The format supports JavaScript, embedded video, encryption, links to external files, font references that aren’t embedded, transparency tricks that depend on a specific colour management library being available, and dozens of other features. Most of those make a document great today and unreadable in 30 years. The font reference goes stale, the JavaScript engine changes, the external resource disappears, the colour profile is no longer interpreted the same way.

Archives — national libraries, courts, regulators, research institutions — need documents that will still render identically in 2050. PDF/A (defined in ISO 19005, first published 2005) is the constrained subset that makes this possible. It bans the dynamic and external bits, requires self-containment, and forces enough metadata to identify the document long after the original software is gone.

What PDF/A removes from regular PDF

The big restrictions:

The result: a PDF/A file is typically larger than the equivalent PDF because everything is embedded, and somewhat less interactive. In return, it’s far more likely to look identical 30 years from now.

The four conformance levels

PDF/A has multiple parts and conformance levels. The ones you’ll actually see:

VersionYearBased onAdds
PDF/A-12005PDF 1.4Baseline archive format
PDF/A-22011PDF 1.7Transparency, JPEG2000, layers, embedded PDF/A files
PDF/A-32012PDF 1.7Embed any file type (used for e-invoices)
PDF/A-42020PDF 2.0Modernised; merges A-2/A-3 capabilities

Each version (except A-4) also has conformance levels:

A typical real-world request: “Submit as PDF/A-2b” — version 2, conformance level B. Or “PDF/A-3a” for an accessible electronic invoice with embedded XML.

When you actually need PDF/A

Concrete situations where PDF/A is required, not optional:

For day-to-day work — sending a proposal, sharing a report, posting a white paper — regular PDF is fine and often better, since features like form interactivity and encryption matter more than 50-year archivability.

How to convert regular PDF to PDF/A

Several free options:

gs -dPDFA=2 -dBATCH -dNOPAUSE \
   -sProcessColorModel=DeviceRGB \
   -sDEVICE=pdfwrite \
   -sOutputFile=output.pdf \
   PDFA_def.ps input.pdf

For verification, the open-source veraPDF tool is the gold standard for PDF/A conformance checking — recommended even by the PDF Association. Run it after conversion to confirm your file actually meets the spec.

Common PDF/A pitfalls

A simple rule

If a system requires PDF/A, give them PDF/A. If it doesn’t, regular PDF is friendlier, smaller, and more interactive. Don’t archive everything as PDF/A by default — the extra embedded fonts and colour profiles can balloon file sizes by 30–50%, and some features you might want (encryption, form scripting) are off limits.

For sensitive documents that also need to be archived, the right pattern is: PDF/A version for the archive, regular encrypted PDF for active distribution. They serve different jobs and one file rarely does both well. For more on encrypted PDFs and password protection, see our guide to PDF security.

Need to do something with the PDF before you archive it — convert, edit, extract? Our browser-based PDF tools run on-device, so even sensitive archive material never leaves your machine.