aboutsummaryrefslogtreecommitdiffstats
path: root/conf/config.xml
diff options
context:
space:
mode:
authorKelly Campbell <kellyc@apache.org>2000-12-18 02:28:40 +0000
committerKelly Campbell <kellyc@apache.org>2000-12-18 02:28:40 +0000
commit6fd5d987513c63d6165216bff1a1dc931c881d7f (patch)
tree613984df6537ea9ffc022077b4732045d950fcea /conf/config.xml
parent7a8a17ca8876d9b9b76131bc34ea10bac6c9346d (diff)
downloadxmlgraphics-fop-6fd5d987513c63d6165216bff1a1dc931c881d7f.tar.gz
xmlgraphics-fop-6fd5d987513c63d6165216bff1a1dc931c881d7f.zip
Changed output from Writer to OutputStream to allow for binary output.
Added compression filters for PDF renderer. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193888 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'conf/config.xml')
-rw-r--r--conf/config.xml20
1 files changed, 19 insertions, 1 deletions
diff --git a/conf/config.xml b/conf/config.xml
index 076b7ca7d..d0243ed01 100644
--- a/conf/config.xml
+++ b/conf/config.xml
@@ -8,4 +8,22 @@
<value>Fop 0.16.0 dev</value>
</entry>
-</configuration> \ No newline at end of file
+ <!-- stream-filter-list provides the default filters that are applied to all
+ stream objects within the PDF file. These are normally used for
+ compression -->
+ <entry role="pdf">
+ <key>stream-filter-list</key>
+ <list>
+ <!-- provides compression using zlib flate (default is on)-->
+ <value>flate</value>
+
+ <!-- encodes binary data into printable ascii characters (default off)
+ This provides about a 4:5 expansion of data size -->
+ <!-- <value>ascii-85</value> -->
+
+ <!-- encodes binary data with hex representation (default off)
+ This filter is not recommended as it doubles the data size -->
+ <!-- <value>ascii-hex</value> -->
+ </list>
+ </entry>
+</configuration>