aboutsummaryrefslogtreecommitdiffstats
path: root/examples/fo/basic/images.fo
blob: ca5d0c8175d310dcf7311d00c9cfbf6df4ddf8dc (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?xml version="1.0" encoding="utf-8"?>

<fo:root font-family="Times Roman" font-size="12pt" text-align="center"
    xmlns:fo="http://www.w3.org/1999/XSL/Format"
    xmlns:fox="http://xml.apache.org/fop/extensions">

<fo:layout-master-set>
<fo:simple-page-master master-name="right"
  margin-top="75pt" margin-bottom="25pt" margin-left="100pt" margin-right="50pt">
  <fo:region-body margin-bottom="50pt"/>
  <fo:region-after extent="25pt"/>
</fo:simple-page-master>

<fo:simple-page-master master-name="left"
  margin-top="75pt" margin-bottom="25pt" margin-left="50pt" margin-right="100pt">
  <fo:region-body margin-bottom="50pt"/>
  <fo:region-after extent="25pt"/>
</fo:simple-page-master>

<fo:page-sequence-master master-name="psmOddEven" >
  <fo:repeatable-page-master-alternatives>
    <fo:conditional-page-master-reference master-reference="right"
      page-position="first" />
    <fo:conditional-page-master-reference master-reference="left"
      odd-or-even="even" />
    <fo:conditional-page-master-reference master-reference="right"
      odd-or-even="odd" />
    <!-- recommended fallback procedure -->
    <fo:conditional-page-master-reference master-reference="rest" />
  </fo:repeatable-page-master-alternatives>
</fo:page-sequence-master>

</fo:layout-master-set>

<fo:page-sequence id="N2528" master-reference="psmOddEven">

<fo:static-content flow-name="xsl-region-after">
  <fo:block text-align-last="center" font-size="10pt">
    <fo:page-number/>
  </fo:block>
</fo:static-content>

<fo:flow flow-name="xsl-region-body">
<fo:block font-size="18pt" font-weight="bold">1. FOP test for images</fo:block>
<fo:block id="N2531">
  <fox:destination internal-destination="N2531"/>
  <fo:block font-size="16pt" font-weight="bold" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em">A GIF image in FOP</fo:block>
  <fo:block>
    <fo:external-graphic src="file:../graphics/xml_feather.gif"/>
  </fo:block>
</fo:block>
<fo:block id="N2535">
  <fox:destination internal-destination="N2535"/>
  <fo:block font-size="16pt" font-weight="bold" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em">A transparent GIF image in FOP</fo:block>
  <fo:block>
    <fo:external-graphic src="file:../graphics/xml_feather_transparent.gif"/>
  </fo:block>
</fo:block>
<fo:block id="N2545">
  <fox:destination internal-destination="N2545"/>
  <fo:block font-size="16pt" font-weight="bold" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em">A JPEG image in FOP</fo:block>
  <fo:block>
    <fo:external-graphic src="file:../graphics/fop.jpg"/>
  </fo:block>
</fo:block>
<fo:block id="N2550">
  <fox:destination internal-destination="N2550"/>
  <fo:block font-size="16pt" font-weight="bold" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em">A BMP image in FOP</fo:block>
  <fo:block>
    <fo:external-graphic src="file:../graphics/linux.bmp"/>
  </fo:block>
</fo:block>
<fo:block id="N2559">
  <fox:destination internal-destination="N2559"/>
  <fo:block font-size="16pt" font-weight="bold" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em"/>
  This section is only required to show that the layout still works.
</fo:block>
</fo:flow>

</fo:page-sequence>

<fo:page-sequence id="N2561" master-reference="psmOddEven">

<fo:static-content flow-name="xsl-region-after">
<fo:block text-align-last="center" font-size="10pt">
  <fo:page-number/>
</fo:block>
</fo:static-content>

<fo:flow flow-name="xsl-region-body">
<fo:block id="AppendixA" font-size="18pt" font-weight="bold">A. Appendix</fo:block>
  <fox:destination internal-destination="AppendixA"/>
</fo:flow>

</fo:page-sequence>

</fo:root>