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.

document2image.xsl 649B

12345678910111213141516171819202122
  1. <?xml version="1.0"?>
  2. <xsl:stylesheet
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  4. version="1.0">
  5. <xsl:param name="label"/>
  6. <xsl:template match="/">
  7. <xsl:variable name="label">
  8. <xsl:if test="//header/title">
  9. <xsl:value-of select="//header/title"/>
  10. </xsl:if>
  11. </xsl:variable>
  12. <image width="456" height="35" bgcolor="0086b2">
  13. <text font="Arial" size="29" x="454" y="8" halign="right" valign="top" color="004080" text="{$label}"/>
  14. <text font="Arial" size="29" x="452" y="6" halign="right" valign="top" color="ffffff" text="{$label}"/>
  15. </image>
  16. </xsl:template>
  17. </xsl:stylesheet>