You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

barcode.fo 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
  3. <fo:layout-master-set>
  4. <fo:simple-page-master master-name="first"
  5. page-width="21cm"
  6. page-height="29.7cm"
  7. margin-top="5mm">
  8. <fo:region-body
  9. margin-bottom="4.5in"
  10. margin-right="5mm"
  11. margin-left="5mm"
  12. margin-top="5mm"/>
  13. <fo:region-after
  14. extent="4in"
  15. border-top-color="silver"
  16. border-top-style="dotted"
  17. border-top-width="0.13mm"/>
  18. </fo:simple-page-master>
  19. <fo:simple-page-master master-name="rest"
  20. page-width="21cm"
  21. page-height="29.7cm"
  22. margin-right="5mm"
  23. margin-left="5mm"
  24. margin-top="5mm"
  25. margin-bottom="5mm">
  26. <fo:region-body/>
  27. </fo:simple-page-master>
  28. <fo:page-sequence-master master-name="A4">
  29. <fo:repeatable-page-master-alternatives>
  30. <fo:conditional-page-master-reference master-reference="first" page-position="first"/>
  31. <fo:conditional-page-master-reference master-reference="rest" page-position="rest"/>
  32. <fo:conditional-page-master-reference master-reference="rest"/>
  33. </fo:repeatable-page-master-alternatives>
  34. </fo:page-sequence-master>
  35. </fo:layout-master-set>
  36. <fo:page-sequence master-reference="A4">
  37. <fo:flow flow-name="xsl-region-body">
  38. <fo:block font-size="14pt" font-weight="bold">
  39. Example embedding Font
  40. </fo:block>
  41. <fo:block font-size="14pt" font-weight="bold">
  42. This example shows how to use an embedded font and
  43. uses a free barcode font as an example. The barcode font is from
  44. <fo:basic-link external-destination="http://www.geocities.com/keith_dimmock/">http://www.geocities.com/keith_dimmock/</fo:basic-link>
  45. and is free.
  46. </fo:block>
  47. <fo:block font-family="Barcode" font-size="74pt" line-height="76pt"
  48. space-before.optimum="6mm">
  49. *ID123456*
  50. </fo:block>
  51. <fo:block font-family="Barcode" font-size="74pt" line-height="76pt"
  52. space-before.optimum="6mm">
  53. normal text
  54. </fo:block>
  55. <fo:block font-family="Barcode, Helvetica" font-size="74pt" line-height="76pt"
  56. space-before.optimum="6mm">
  57. *ID123456* normal text
  58. </fo:block>
  59. </fo:flow>
  60. </fo:page-sequence>
  61. </fo:root>