Advertisement
Guest User

Untitled

a guest
Sep 30th, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  4. xmlns:fo="http://www.w3.org/1999/XSL/Format"
  5. version="2.0">
  6. <xsl:template match="/">
  7. <fo:root>
  8. <fo:layout-master-set>
  9. <fo:simple-page-master master-name="firstPage" page-height="297mm" page-width="210mm">
  10. <fo:region-body margin-top="25mm"/>
  11. </fo:simple-page-master>
  12. </fo:layout-master-set>
  13. <fo:page-sequence master-reference="firstPage">
  14. <fo:flow flow-name="xsl-region-body">
  15. <fo:block-container position="absolute">
  16. <fo:block font-size="20pt" color="red">
  17. blub </fo:block>
  18. </fo:block-container>
  19. <fo:block-container position="absolute">
  20. <fo:block>
  21. <fo:external-graphic src="file:///Users/gigo/Downloads/pdf-image/overlay.pdf"/>
  22. </fo:block>
  23. </fo:block-container>
  24. </fo:flow>
  25. </fo:page-sequence>
  26. </fo:root>
  27. </xsl:template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement