<!-- path to GraphicsMagick -->
<gmPath>/usr/bin/gm</gmPath>
<!-- path to ImageMagick -->
<convertPath>/usr/bin/convert</convertPath>
order of configuration is:
1.) project name and step name matches
2.) step name matches and project is *
3.) project name matches and step name is *
4.) project name and step name are *
<!-- which projects to use for (can be more than one, otherwise use *) -->
<!-- the source directory from which the images will be taken -->
<sourceDir>cropped</sourceDir>
<!-- the destination directory where the scaled and watermarked images will reside -->
<!-- only use this block with processes in collection "mycollection"
and with mediaType "book" -->
<imageConfig collection="mycollection" mediaType="book">
<!-- The maximum size of the longest side of an image -->
<resizeTo>1500</resizeTo>
<!-- The watermark configuration -->
<!-- the image to use for watermarking -->
<image>/opt/digiverso/goobi/xslt/logo.png</image>
<!-- define the shade size here -->
<shadeSize>240x40</shadeSize>
<!-- the location of the watermark. Possible values: north,
northeast, east, southeast, south, southwest,
<location>southeast</location>
<!-- these are the distances to the edges on the x- resp. y-axis -->
<xDistance>100</xDistance>
<yDistance>100</yDistance>
<!-- use this block with processes in collection "myothercollection"
<imageConfig collection="myothercollection" mediaType="*">
<resizeTo>1500</resizeTo>
<!-- you can also use a text-only watermark. -->
<text>My watermark text</text>
<!-- define the shade size here -->
<shadeSize>240x40</shadeSize>
<!-- define the size of the box for the text -->
<boxSize>450x200</boxSize>
<!-- font to use for the text rendering -->
<location>southeast</location>
<xDistance>600</xDistance>
<yDistance>100</yDistance>