<?xml version="1.0"?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<!-- $Id: fop.xconf 447325 2006-09-18 08:55:33Z jeremias $ -->
<!--

This is an example configuration file for FOP.
This file contains the same settings as the default values
and will have no effect if used unchanged.

Relative config url's will be resolved relative to
the location of this file.

-->
<!-- NOTE: This is the version of the configuration -->
<fop version="1.0">
  <!-- Base URL for resolving relative URLs -->
  <base>.</base>
  <!-- Source resolution in dpi (dots/pixels per inch) for determining the size of pixels in SVG and bitmap images, default: 72dpi -->
  <source-resolution>72</source-resolution>
  <!-- Target resolution in dpi (dots/pixels per inch) for specifying the target resolution for generated bitmaps, default: 72dpi -->
  <target-resolution>300</target-resolution>
  <!-- Default page-height and page-width, in case
	value is specified as auto -->
  <default-page-settings height="297mm" width="210mm" />
  <!-- Information for specific renderers -->
  <!-- Uses renderer mime type for renderers -->
  <renderers>
    <renderer mime="application/pdf">
      <filterList>
        <!-- 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> -->
      </filterList>
      <fonts>
        <directory>d:\dev\pdfbin\fonts\</directory>
	<auto-detect />
      </fonts>
      <!-- This option lets you specify additional options on an XML handler -->
      <!--xml-handler namespace="http://www.w3.org/2000/svg">
        			<stroke-text>false</stroke-text>
		</xml-handler-->
    </renderer>
    <renderer mime="application/postscript">
      <!-- This option forces the PS renderer to rotate landscape pages -->
      <!--auto-rotate-landscape>true</auto-rotate-landscape-->
      <!-- This option lets you specify additional options on an XML handler -->
      <!--xml-handler namespace="http://www.w3.org/2000/svg">
        <stroke-text>false</stroke-text>
</xml-handler-->
      <fonts>
        	<directory>d:\dev\pdfbin\fonts\</directory>
      </fonts>
    </renderer>
    <renderer mime="application/vnd.hp-PCL">
      <fonts>
        	<directory>d:\dev\pdfbin\fonts\</directory>
      </fonts>
    </renderer>
    <renderer mime="application/X-fop-intermediate-format">
 	<fonts>
        	<directory>d:\dev\pdfbin\fonts\</directory>
      </fonts>
    </renderer>
    <renderer mime="application/X-fop-areatree">
	<fonts>
        	<directory>d:\dev\pdfbin\fonts\</directory>
     	</fonts>
    </renderer>
    <!-- MIF does not have a renderer
    <renderer mime="application/vnd.mif">
    </renderer>
    -->
    <renderer mime="image/svg+xml">
      <format type="paginated" />
      <link value="true" />
      <strokeText value="false" />
    </renderer>
    <renderer mime="application/awt"></renderer>
    <renderer mime="image/png">
      <!--transparent-page-background>true</transparent-page-background-->
    </renderer>
    <renderer mime="image/tiff">
      <!--transparent-page-background>true</transparent-page-background-->
      <!--compression>CCITT T.6</compression-->
    </renderer>
    <renderer mime="text/xml"></renderer>
    <!-- RTF does not have a renderer
    <renderer mime="text/rtf">
    </renderer>
    -->
    <renderer mime="text/plain">
      <pageSize columns="80" />
    </renderer>
  </renderers>
</fop>

