PDF vs PDF/A vs PDF/X: Standards Compared

A regular PDF is flexible but unpredictable across decades and devices. PDF/A and PDF/X are constrained subsets of the same format — built to guarantee specific properties for archiving and printing. Picking the right flavour saves you from broken fonts, color shifts, and rejected print jobs.

Standards at a Glance

StandardPurposeFontsColorCommon Use
PDF 1.7 / 2.0General purposeOptional embeddingAnyDaily documents, sharing
PDF/A-1bLong-term archivalAll embeddedDevice-independentLegal, regulatory archives
PDF/A-2b / A-3Modern archival + attachmentsAll embeddedICC-taggedE-invoices (ZUGFeRD), records
PDF/X-1aPrint, CMYK onlyAll embeddedCMYK + spot, no live transparencyLegacy prepress
PDF/X-4Modern printAll embeddedICC + transparency allowedMagazines, packaging
PDF/UAAccessibilityEmbedded + taggedAnyScreen-reader compliant docs

When to Use PDF/A

PDF/A removes anything that depends on the outside world. There are no external font references, no linked media, no encryption, no JavaScript, no audio or video. Everything required to render the document exactly the same way in 2050 is sealed inside the file. Choose PDF/A whenever the document must outlive its software — court filings, medical records, regulatory submissions, museum collections, ISO 9001 quality records.

  • PDF/A-1b: safest, widest validator support, no transparency or layers.
  • PDF/A-2b: modern default, allows JPEG2000, transparency, layers.
  • PDF/A-3: A-2 plus arbitrary embedded files (XML, CSV, source data).

When to Use PDF/X

PDF/X exists because commercial printing is unforgiving. A missing font or an untagged RGB image can ruin a 10,000-copy run. PDF/X mandates an output intent — a named ICC profile (such as Coated FOGRA39) that describes the press condition — so the printer knows exactly which color space your file targets. If you send work to a print shop, ask which PDF/X variant they require and export to that exact flavour.

Picking the Right Flavour

  1. Will the file be archived for more than 5 years? Use PDF/A-2b or A-3.
  2. Going to a commercial press? Use PDF/X-4 (or PDF/X-1a for legacy shops).
  3. Need screen-reader accessibility? Combine PDF/UA with PDF/A-2a (the tagged variant).
  4. Just sharing for review or signing? A regular PDF is fine — keep it small.

Converting and Validating — Don't Skip the Check

These are ISO standards, so “it looks like a PDF” is not enough — a file either conforms or it doesn't, and the only way to know is to validate.

  1. Convert with a real engine. Acrobat, Ghostscript, or a PDF library can output PDF/A or PDF/X, embedding fonts and setting the output intent as part of the conversion.
  2. Validate, don't assume. For PDF/A, run the free open-source veraPDF validator; for accessibility-tagged variants, use a checker like PAC. They report every non-conformance line by line.
  3. Fix the root cause. The most common failures are non-embeddable fonts and a missing output intent — swap the font for a licensable one, or set the correct intent, then re-run.
  4. Keep the source. Archive the editable original alongside the PDF/A; standards lock a file down, which makes later edits painful.

Shrink Before You Archive

Compress oversized PDFs in-browser before converting them to PDF/A.

Compress PDF →

Frequently Asked Questions

An ISO subset of PDF for long-term archiving — fonts embedded, no external dependencies, device-independent color.
Prepress and commercial printing. Forces font embedding, output intent, and color management.
Usually yes, provided every font can be embedded and the color is device-independent. Acrobat, Ghostscript, and several libraries do the conversion; the essential step people skip is validating the result with veraPDF, since a file that merely opens is not necessarily conformant. Fix any reported font or output-intent issues and re-run.
A-2b for most archives; A-3 if you need embedded source files.
X-4 supports transparency and ICC profiles; X-1a flattens and locks to CMYK only.