blob: beb24c0ef423c64b20d85bce09ac4ac7fe9630cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<?xml version="1.0"?>
<fop version="1.0">
<!-- Switch off font caching for the purposes of the unit test -->
<use-cache>false</use-cache>
<!-- Base URL for resolving relative URLs -->
<base>./</base>
<!-- Font Base URL for resolving relative font URLs -->
<font-base>./test/resources/fonts</font-base>
<renderers>
<renderer mime="application/pdf">
<filterList type="content">
<value>null</value>
</filterList>
<fonts>
<font embed-url="glb12.ttf" kerning="yes">
<font-triplet name="Gladiator Bold" style="normal" weight="normal"/>
<font-triplet name="Gladiator" style="normal" weight="bold"/>
<font-triplet name="Gladiator" style="normal" weight="normal"/>
</font>
</fonts>
</renderer>
<renderer mime="application/postscript">
<fonts>
<font embed-url="glb12.ttf" kerning="yes">
<font-triplet name="Gladiator Bold" style="normal" weight="normal"/>
<font-triplet name="Gladiator" style="normal" weight="bold"/>
<font-triplet name="Gladiator" style="normal" weight="normal"/>
</font>
</fonts>
</renderer>
<renderer mime="image/tiff">
<fonts>
<font embed-url="glb12.ttf" kerning="yes">
<font-triplet name="Gladiator Bold" style="normal" weight="normal"/>
<font-triplet name="Gladiator" style="normal" weight="bold"/>
<font-triplet name="Gladiator" style="normal" weight="normal"/>
</font>
</fonts>
</renderer>
</renderers>
</fop>
|