fop/examples/fo/advanced/barcode.fo
2004-02-22 13:37:07 +00:00

72 líneas
2.2 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master master-name="first"
page-width="21cm"
page-height="29.7cm"
margin-top="5mm">
<fo:region-body
margin-bottom="4.5in"
margin-right="5mm"
margin-left="5mm"
margin-top="5mm"/>
<fo:region-after
extent="4in"
border-top-color="silver"
border-top-style="dotted"
border-top-width="0.13mm"/>
</fo:simple-page-master>
<fo:simple-page-master master-name="rest"
page-width="21cm"
page-height="29.7cm"
margin-right="5mm"
margin-left="5mm"
margin-top="5mm"
margin-bottom="5mm">
<fo:region-body/>
</fo:simple-page-master>
<fo:page-sequence-master master-name="A4">
<fo:repeatable-page-master-alternatives>
<fo:conditional-page-master-reference master-reference="first" page-position="first"/>
<fo:conditional-page-master-reference master-reference="rest" page-position="rest"/>
<fo:conditional-page-master-reference master-reference="rest"/>
</fo:repeatable-page-master-alternatives>
</fo:page-sequence-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="A4">
<fo:flow flow-name="xsl-region-body">
<fo:block font-size="14pt" font-weight="bold">
Example embedding Font
</fo:block>
<fo:block font-size="14pt" font-weight="bold">
This example shows how to use an embedded font and
uses a free barcode font as an example. The barcode font is from
<fo:basic-link external-destination="http://www.geocities.com/keith_dimmock/">http://www.geocities.com/keith_dimmock/</fo:basic-link>
and is free.
</fo:block>
<fo:block font-family="Barcode" font-size="74pt" line-height="76pt"
space-before.optimum="6mm">
*ID123456*
</fo:block>
<fo:block font-family="Barcode" font-size="74pt" line-height="76pt"
space-before.optimum="6mm">
normal text
</fo:block>
<fo:block font-family="Barcode, Helvetica" font-size="74pt" line-height="76pt"
space-before.optimum="6mm">
*ID123456* normal text
</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>