Hi,
I am trying to create a pdf with an svg, using the xsl code below:
<fo:static-content flow-name="xsl-region-before">
<xsl:if test="data/ContractTO/statusId= '6000'">
<fo:block>
<fo:instream-foreign-object xmlns:svg="http://www.w3.org/2000/svg">
<svg:svg width="40in" height="40in">
<svg:g transform="translate(150,150)">
<svg:g transform="rotate(45)">
<svg:g style="fill:none; stroke:gray;stroke-width:1">
<svg:text x="35" y="100" style="font-size:100;font-family:TimesNewRoman">DRAFT </svg:text>
</svg:g>
</svg:g>
</svg:g>
</svg:svg>
</fo:instream-foreign-object>
</fo:block>
</xsl:if>
While this works perfectly in Win NT ,there are some problems in Unix creating the svg(the body of the pdf is OK but there is no svg).
Does anyone has an idea about this?
_________________________________________________________________
Add photos to your messages with MSN 8. Get 2 months FREE*. http://join.msn.com/?page=features/featuredemail
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
