diff options
Diffstat (limited to 'src/documentation/content/xdocs/trunk/configuration.xml')
-rw-r--r-- | src/documentation/content/xdocs/trunk/configuration.xml | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/src/documentation/content/xdocs/trunk/configuration.xml b/src/documentation/content/xdocs/trunk/configuration.xml index 16465f54b..0b845bcf9 100644 --- a/src/documentation/content/xdocs/trunk/configuration.xml +++ b/src/documentation/content/xdocs/trunk/configuration.xml @@ -71,9 +71,21 @@ <td>Specifies the base URL based on which relative URL will be resolved.</td> </tr> <tr> - <td>resolution</td> + <td>source-resolution</td> <td>Integer, dpi</td> - <td>Resolution in dpi (dots per inch) which is used internally.</td> + <td> + Resolution in dpi (dots per inch) which is used internally to determine the pixel + size for SVG images and bitmap images without resolution information. + </td> + </tr> + <tr> + <td>target-resolution</td> + <td>Integer, dpi</td> + <td> + Resolution in dpi (dots per inch) used to specify the output resolution for bitmap + images generated by bitmap renderers (such as the TIFF renderer) and by bitmaps + generated by Apache Batik for filter effects and such. + </td> </tr> <tr> <td>strict-validation</td> @@ -119,8 +131,12 @@ <!-- Base URL for resolving relative URLs --> <base>./</base> - <!-- Internal resolution in dpi (dots per pixel), default: 72dpi --> - <resolution>72</resolution> + + <!-- 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>72</target-resolution> + <!-- default page-height and page-width, in case value is specified as auto --> <default-page-settings height="11in" width="8.26in"/> |