瀏覽代碼

added example for embedding fonts

using free barcode font for embedding


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195096 13f79535-47bb-0310-9956-ffa450edef68
pull/30/head
Keiron Liddle 22 年之前
父節點
當前提交
ebac459b36
共有 4 個檔案被更改,包括 69 行新增0 行删除
  1. 二進制
      docs/examples/advanced/K3.TTF
  2. 5
    0
      docs/examples/advanced/K3.xml
  3. 14
    0
      docs/examples/advanced/bar.conf.xml
  4. 50
    0
      docs/examples/advanced/barcode.fo

二進制
docs/examples/advanced/K3.TTF 查看文件


+ 5
- 0
docs/examples/advanced/K3.xml 查看文件

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Note: this file created using TTFReader
-->
<font-metrics type="TYPE0"><font-name>New</font-name><embed/><cap-height>0</cap-height><x-height>0</x-height><ascender>390</ascender><descender>0</descender><bbox><left>0</left><bottom>0</bottom><right>219</right><top>390</top></bbox><flags>33</flags><stemv>0</stemv><italicangle>0</italicangle><subtype>TYPE0</subtype><multibyte-extras><cid-type>CIDFontType2</cid-type><default-width>0</default-width><bfranges><bf gi="47" ue="32" us="32"/><bf gi="45" ue="36" us="36"/><bf gi="43" ue="37" us="37"/><bf gi="40" ue="42" us="42"/><bf gi="42" ue="43" us="43"/><bf gi="0" ue="44" us="44"/><bf gi="41" ue="45" us="45"/><bf gi="46" ue="46" us="46"/><bf gi="44" ue="47" us="47"/><bf gi="5" ue="50" us="48"/><bf gi="9" ue="56" us="51"/><bf gi="8" ue="57" us="57"/><bf gi="15" ue="83" us="65"/><bf gi="4" ue="84" us="84"/><bf gi="34" ue="90" us="85"/><bf gi="0" ue="65535" us="65535"/></bfranges><cid-widths start-index="0"><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/><wx w="156"/></cid-widths></multibyte-extras></font-metrics>

+ 14
- 0
docs/examples/advanced/bar.conf.xml 查看文件

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="ISO-8859-1"?>

<!-- TODO: use proper config -->

<configuration>

<fonts>
<font metrics-file="K3.xml" kerning="yes" embed-file="K3.TTF">
<font-triplet name="Barcode" style="normal" weight="normal"/>
</font>
</fonts>

</configuration>


+ 50
- 0
docs/examples/advanced/barcode.fo 查看文件

@@ -0,0 +1,50 @@
<?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 page-width="21cm" page-height="29.7cm" master-name="first" 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 page-width="21cm" page-height="29.7cm" master-name="rest" 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>

Loading…
取消
儲存