You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.xml 1.5KB

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