blob: 051eb4a1caeac0c32f211ac8dfa854122b9122b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!--<!DOCTYPE configuration SYSTEM "config.dtd">-->
<!-- to developers: have a look at the config.dtd to
see how to structure your config entries -->
<configuration>
<entry>
<key>version</key>
<value>FOP 0.16.0 DEV</value>
</entry>
<!-- 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>
|