|
| 1 | +--- |
| 2 | +title: How to Comply with PDF/A Standard |
| 3 | +page_title: How to Comply with PDF/A Standard |
| 4 | +slug: radpdfprocessing-concepts-comply-with-pdfa-standard |
| 5 | +tags: pdfa,standard |
| 6 | +published: True |
| 7 | +position: 1 |
| 8 | +--- |
| 9 | + |
| 10 | +# How to Comply with PDF/A Standard |
| 11 | + |
| 12 | +[PDF/A](http://en.wikipedia.org/?title=PDF/A) is an ISO-standardized version of the PDF (Portable Document Format) specialized for the digital preservation of electronic documents. |
| 13 | + |
| 14 | +PDF/A standard is designed to use the PDF format for archiving documents. This means that the compliant documents should contain all the information necessary for displaying the document embedded in the file. This includes all content, fonts, and color information. A PDF/A document is not permitted to rely on information from external sources. Other key elements to PDF/A conformance include: |
| 15 | + |
| 16 | +* Audio and video content is forbidden. |
| 17 | +* JS and executable file launches are forbidden. |
| 18 | +* All fonts must be embedded. This applies to the Standard 14 fonts as well. |
| 19 | +* Color spaces should be specified in a device-independent manner. |
| 20 | +* Encryption is forbidden. |
| 21 | +* Use of standards-based metadata. |
| 22 | +* Transparent objects and layers are forbidden. |
| 23 | +* LZW and JPEG2000 image compression models are forbidden. |
| 24 | + |
| 25 | +## Compliance Levels |
| 26 | + |
| 27 | +There are three major versions of the standard: |
| 28 | + |
| 29 | +* **PDF/A-1** (2005) |
| 30 | +* **PDF/A-2** (2011) |
| 31 | +* **PDF/A-3** (2013) |
| 32 | + |
| 33 | +RadPdfProcessing supports the following PDF/A compliance levels: |
| 34 | + |
| 35 | +|Compliance Level|Description| |
| 36 | +|----|----| |
| 37 | +|**None**|Specify no compliance level.| |
| 38 | +|**PdfA1B**|PDF/A-1b compliance level. Ensures reliable reproduction of the visual appearance of the document.| |
| 39 | +|**PdfA1A** (_Since Q3 2025_)|PDF/A-1a compliance level. Ensures that document content can be searched and re-purposed. Requires document structure, tagged PDF, Unicode character maps, and language specification.| |
| 40 | +|**PdfA2B**|PDF/A-2b compliance level. Similar to PDF/A-1b but based on PDF Reference 1.7.| |
| 41 | +|**PdfA2A** (_Since Q3 2025_)|PDF/A-2a compliance level. Similar to PDF/A-1a but based on PDF Reference 1.7.| |
| 42 | +|**PdfA2U**|PDF/A-2u compliance level. Similar to PDF/A-2b with the additional requirement that all text has Unicode mapping.| |
| 43 | +|**PdfA3B**|PDF/A-3b compliance level. Similar to PDF/A-2b but allows embedding of arbitrary file formats.| |
| 44 | +|**PdfA3A** (_Since Q3 2025_)|PDF/A-3a compliance level. Similar to PDF/A-2a but allows embedding of arbitrary file formats.| |
| 45 | +|**PdfA3U**|PDF/A-3u compliance level. Requires character mapping to Unicode and allows embedding of arbitrary file formats.| |
| 46 | +|**PdfUA1** (_Since Q3 2025_)|PDF/UA-1 compliance level. Ensures accessibility for users with disabilities.| |
| 47 | + |
| 48 | +>note Any files embedded within a PDF/A-compliant document must also comply with the PDF/A standard. |
| 49 | +
|
| 50 | +## How to Conform to PDF/A Standard |
| 51 | + |
| 52 | +The **PdfFormatProvider** class allows the export of a **RadFixedDocument** to PDF while also specifying available [export settings]({%slug radpdfprocessing-formats-and-conversion-pdf-settings%}#export-settings). |
| 53 | + |
| 54 | +To comply with any of the standards, you need to set the **ComplianceLevel** property to a value different than **None**: |
| 55 | + |
| 56 | +<snippet id='libraries-pdf-concepts-compliance-ensure-compliance'/> |
| 57 | + |
| 58 | +### Accessibility Compliance |
| 59 | + |
| 60 | +To comply with the [accessibility]({%slug create-accessible-pdf-documents%}) requirements of the PDF/A-1a, PDF/A-2a, PDF/A-3a, or PDF/UA-1 standards, you must also set the [TaggingStrategy]({%slug radpdfprocessing-model-tagged-pdf%}) property of the PdfFormatProvider's **PdfExportSettings**. |
| 61 | + |
| 62 | +<snippet id='libraries-pdf-concepts-compliance-ensure-accessability-compliance'/> |
| 63 | + |
| 64 | +This ensures that the exported PDF document is properly tagged, which is essential for meeting these standards' requirements. |
| 65 | + |
| 66 | +>important If you specify an encryption for the document, it will be ignored since the standard does not allow documents to be encrypted. |
| 67 | +
|
| 68 | +>important PDF/A standard requires documents to contain all fonts used in them. RadPdfProcessing does not support embedding of the standard 14 fonts used in PDF documents, so using them will prevent the document from complying with the standard. More information about font embedding is available in the [Fonts]({%slug radpdfprocessing-concepts-fonts%}) article. |
| 69 | +
|
| 70 | +## See Also |
| 71 | + |
| 72 | + * [Using PdfFormatProvider]({%slug radpdfprocessing-formats-and-conversion-pdf-pdfformatprovider%}) |
| 73 | + * [PdfFormatProvider Settings]({%slug radpdfprocessing-formats-and-conversion-pdf-settings%}) |
| 74 | + * [Fonts]({%slug radpdfprocessing-concepts-fonts%}) |
0 commit comments