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/03/12 11:39:53 UTC

svn commit: r1666124 - /xmlgraphics/site/trunk/content/fop/trunk/pdfx.mdtext

Author: ssteiner
Date: Thu Mar 12 10:39:52 2015
New Revision: 1666124

URL: http://svn.apache.org/r1666124
Log:
PDF/VT

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

Modified: xmlgraphics/site/trunk/content/fop/trunk/pdfx.mdtext
URL: http://svn.apache.org/viewvc/xmlgraphics/site/trunk/content/fop/trunk/pdfx.mdtext?rev=1666124&r1=1666123&r2=1666124&view=diff
==============================================================================
--- xmlgraphics/site/trunk/content/fop/trunk/pdfx.mdtext (original)
+++ xmlgraphics/site/trunk/content/fop/trunk/pdfx.mdtext Thu Mar 12 10:39:52 2015
@@ -83,3 +83,39 @@ There are a number of things that must b
 ## PDF profile compatibility { #profile-compatibility}
 
 The PDF profiles "PDF/X-3:2003" and "PDF/A-1b" are compatible and can both be activated at the same time.
+
+
+#PDF/VT (ISO 16612-2)
+
+Professional printers can use PDFVT to control things like what printer tray is used.
+Image XObjects have UUID added to enable caching in printer.
+
+Add metadata for each page master based on how the printer has been configured.
+
+## Usage (fo) { #fo}
+
+    :::xml
+    <fo:simple-page-master master-name="simple" page-height="27.9cm" page-width="21.6cm">
+      <fo:region-body />
+       <pdf:vt>
+        <pdf:dictionary key="DPM/CIP4_Root/CIP4_Production/CIP4_Part">
+            <pdf:string key="CIP4_ProductType">frontpages</pdf:string>        
+        </pdf:dictionary> 
+      </pdf:vt>          
+    </fo:simple-page-master>
+
+Enable PDF/VT-1 and PDF/X-4 in fop.xconf:
+
+## Usage (fop.xconf) { #fop-xconf}
+
+    :::xml
+    <renderer mime="application/pdf">
+      <pdf-x-mode>PDF/X-4</pdf-x-mode> 
+      <pdf-vt-mode>PDF/VT-1</pdf-vt-mode>
+      <output-profile>ISOcoated_v2_300_bas.icc</output-profile>
+      <fonts>
+        <font kerning="yes" embed-url="arial.ttf">
+          <font-triplet name="Arial" style="normal" weight="normal"/>
+        </font>
+      </fonts>
+    </renderer>
\ No newline at end of file



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