You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlgraphics.apache.org by ss...@apache.org on 2015/06/16 14:09:37 UTC

svn commit: r1685783 - /xmlgraphics/site/trunk/content/fop/trunk/accessibility.mdtext

Author: ssteiner
Date: Tue Jun 16 12:09:37 2015
New Revision: 1685783

URL: http://svn.apache.org/r1685783
Log:
PDF/UA

Modified:
    xmlgraphics/site/trunk/content/fop/trunk/accessibility.mdtext

Modified: xmlgraphics/site/trunk/content/fop/trunk/accessibility.mdtext
URL: http://svn.apache.org/viewvc/xmlgraphics/site/trunk/content/fop/trunk/accessibility.mdtext?rev=1685783&r1=1685782&r2=1685783&view=diff
==============================================================================
--- xmlgraphics/site/trunk/content/fop/trunk/accessibility.mdtext (original)
+++ xmlgraphics/site/trunk/content/fop/trunk/accessibility.mdtext Tue Jun 16 12:09:37 2015
@@ -182,6 +182,41 @@ Accessibility support in Apache FOP is r
 
 - The side regions (region-before, region-after etc.) are currently not specially identified. Screen readers may read their content at page changes.
 
+## PDF/UA (ISO 14289)
+
+PDF/UA (PDF/Universal Accessibility), the standard for accessible PDF technology.
+
+## Usage (fo) { #fo}
+
+Define document title in fo:
+
+    :::xml
+    <fo:declarations>
+      <x:xmpmeta xmlns:x="adobe:ns:meta/">
+        <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+          <rdf:Description rdf:about="" xmlns:dc="http://purl.org/dc/elements/1.1/">
+          <dc:title>Document title</dc:title>
+            <dc:creator>Document author</dc:creator>
+            <dc:description>Document subject</dc:description>
+          </rdf:Description>
+        </rdf:RDF>
+      </x:xmpmeta>
+    </fo:declarations>
+
+## Usage (fop.xconf) { #fop-xconf}
+
+Enable PDF/UA-1 in fop.xconf:
+
+    :::xml
+    <fop version="1.0">
+      <accessibility>true</accessibility>
+      <renderers>
+        <renderer mime="application/pdf">
+          <pdf-ua-mode>PDF/UA-1</pdf-ua-mode>  
+        </renderer>
+      </renderers>
+    </fop>
+
 ## Related Links { #links}
 
 Many resources providing guidance about creating accessible documents can be found on the web. Here are a few links, along with additional resources around the topic:



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: commits-help@xmlgraphics.apache.org