fop - xsl:fo how to include dynamically generated svg -


i want generate svg chart , insert pdf using apache fop. far have tried using

<fo:instream-foreign-object xmlns:svg="http://www.w3.org/2000/svg">     <xsl:value-of select="svgdata"/> </fo:instream-foreign-object> 

in xsl file , generated svg held string in "svgdata". approach not working not parsing string svg data , appending it.

how achieve ? need create svg in java (baitk?) , add pdf.


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -