As my xml file is before traited by a java program
in odrer generate other tag. This one will completely generate tag for creating
barrecode so
before : xml file :
<barrcecode>012341223</barrcode>
but impossible to realise the svg barrce code
after : xml fil after transformation by java
programm
<barrecode>
<number>1123412134121134211231412134242411</number>
<svg height="50pt" width="400pt"/> <rec width="1.5" x="4.0"/> <rec width="1.5" x="7.0"/> <rec width="1.5" x="10.0"/> <rec width="1.5" x="14.5"/> <rec width="1.5" x="100"/> ...
</barrcode>
xsl file :
<fo:instream-foreign-object>
<xsl:variable name="w" select="codebarre/svg/@width"/> <xsl:variable name="h" select="codebarre/svg/@height"/> <svg xmlns="http://www.w3.org/2000/svg" width="{$w}"
height="{$h}" x="0">
<g id="codebarre" fill="#000000"> <xsl:for-each select="codebarre/rec"> <xsl:variable name="w" select="@width"/> <xsl:variable name="x" select="@x"/> <rect x="{$x}" width="{$w}" height="50"/> </xsl:for-each> </g> </svg> </fo:instream-foreign-object>
|
- RE: Quark workflow Joel Gwynn
- Re: Quark workflow Oleg Tkachenko
- RE: Quark workflow Joel Gwynn
- Re: Quark workflow Oleg Tkachenko
- RE: Quark workflow Joel Gwynn
- Re: incrementing variable xavier gibouin
- RE: incrementing variable Phil Dickinson
- Re: incrementing variable John Gentilin
- RE: incrementing variable Phil Dickinson
- Re: incrementing variable Oleg Tkachenko
- Re: incrementing variable xavier gibouin
- Re: incrementing variable J.Pietschmann