An archive has one requirement that ordinary documents never face: the file must look the same in 2056 as it does today, on software that has not been written yet, with no help from the machine that created it. PDF/A is the profile of PDF designed for that, and its rules all come from that single requirement.
What PDF/A demands
PDF/A (ISO 19005) is not a different format. It is a PDF with the risky parts removed and the necessary parts made mandatory:
- Every font embedded. A normal PDF may reference “Helvetica” and expect the reader to supply it. An archival PDF cannot depend on a font existing in the future, so the glyphs must be inside the file.
- No encryption. A password nobody remembers is a document nobody can open.
- No JavaScript, no external links to content, no multimedia. Nothing that requires an environment to run.
- Colours defined. Device-dependent colour (“whatever this printer thinks red is”) must be replaced or accompanied by an ICC profile so red is red.
- Metadata in XMP, with the conformance level declared, so a future system can identify the file.
- Transparency and layers restricted or forbidden depending on the level.
Two levels matter in practice: B (basic) guarantees visual appearance and is what most archives, courts and registries require; A (accessible) adds tagged logical structure for assistive technology and is rarely achievable from an existing file without re-authoring.
Why converters lie
Declaring conformance is a metadata field. Any tool can write it. Meeting the rules is real work, and the hardest rule — embedding fonts — cannot be done at all if the tool does not have the font.
That is the common case. A document that uses the standard “base 14” fonts (Helvetica, Times, Courier and friends) usually does not embed them, because every reader is required to have them. A converter that meets such a file has two choices: obtain and embed the fonts, or write “PDF/A” into the metadata anyway and hand back a file that will fail the archive’s validator. Many choose the second. The result is worse than not converting, because it looks done.
Convert PDF to PDF/A takes the other path. It checks whether every font the document uses is embedded, and if any is not, it refuses and tells you which — rather than producing a file that claims something untrue.
Fixing the font problem
If the tool refuses because fonts are not embedded, the fix is upstream, in the application that made the PDF:
- Word, LibreOffice, Google Docs: export to PDF with embed fonts enabled (LibreOffice: File → Export as PDF → General → Archive (PDF/A); Word: Options → Save → Embed fonts in the file before saving as PDF).
- Print to PDF drivers usually embed everything by default; check the driver’s font settings.
- Scans have no fonts unless OCR added them; the OCR text layer’s font must be embedded by the OCR tool.
Re-export, then convert. If you no longer have the source and the fonts are not embedded, no honest tool can make the file PDF/A without the fonts.
Step by step
- Prepare the document: Flatten PDF any forms and comments, since annotations are restricted, and Unlock PDF if it is encrypted.
- Open Convert PDF to PDF/A and choose the file. If it reports unembedded fonts, go back to the source and re-export with fonts embedded.
- Save the result. The tool produces an archival candidate — a file that meets the requirements it can check and declares its conformance in XMP.
- Validate. Conformance checking is a separate job from conversion. The reference validator is veraPDF, an open-source Java tool; run the file through it at the level your archive requires and keep the report with the document.
- Set descriptive metadata with Edit PDF metadata — title, author, subject — because the archive will index on it.
Why validation stays outside the browser
A complete PDF/A validator checks hundreds of rules across the whole file, and the only implementation the archival community trusts is veraPDF, which is Java. Filozy can convert honestly and refuse dishonestly, but it does not claim to validate. Treat the veraPDF report as the deliverable; the PDF is the thing it describes.
