home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 160 - Disc 2 / MF_UK_160_2.iso / pc / DiscContent / Trials / oxygen / lib / fop.jar / conf / config.xml < prev    next >
Encoding:
Text File  |  2003-07-15  |  1.5 KB  |  50 lines

  1. <!--<!DOCTYPE configuration SYSTEM "config.dtd">-->
  2. <!-- to developers: have a look at the config.dtd to 
  3.      see how to structure your config entries -->
  4.  
  5. <configuration>
  6.   <entry>
  7.     <key>version</key>
  8.     <value>FOP 0.20.5</value>
  9.   </entry>
  10.  
  11.   <!-- default values for commandline options -->
  12.   <!-- suppress all progress information, error message are still displayed -->
  13.   <entry>
  14.     <key>quiet</key>
  15.     <value>false</value>
  16.   </entry>
  17. <!-- sets debug mode on/off; debug mode hasm more progress 
  18.      information and a stacktrace in case of a fatal exception -->
  19.   <entry>
  20.     <key>debugMode</key>
  21.     <value>false</value>
  22.   </entry>
  23.   <!-- displays all configuration  settings and then exits -->
  24.   <entry>
  25.     <key>dumpConfiguration</key>
  26.     <value>false</value>
  27.   </entry>
  28.  
  29.   <!-- stream-filter-list provides the default filters that are applied to all
  30.        stream objects within the PDF file. These are normally used for 
  31.        compression -->
  32.   <entry role="pdf">
  33.     <key>stream-filter-list</key>
  34.     <list>
  35.       <!-- provides compression using zlib flate (default is on)-->
  36.       <value>flate</value>
  37.       
  38.       <!-- encodes binary data into printable ascii characters (default off)
  39.            This provides about a 4:5 expansion of data size -->
  40.       <value>ascii-85</value>
  41.  
  42.       <!-- encodes binary data with hex representation (default off)
  43.            This filter is not recommended as it doubles the data size -->
  44.       <!-- <value>ascii-hex</value> -->
  45.     </list>
  46.   </entry>
  47.   <fonts>
  48.   </fonts>
  49. </configuration>
  50.