diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/config.xml | 20 |
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> |