Summary
SVG support
Content
Hi all,
I am trying to embed an SVG into the generated document. With the following code, I am able to export the svg in PDF
<fo:instream-foreign-object content-type="image/svg+xml" width="12pt" height="12pt">
<svg width="12.0pt" height="12.6pt">
<g xdofo:shape-id="3">
<ellipse rx="6.0" ry="6.0" cx="6.0" cy="6.0" fill="#050505"/>
</g>
</svg>
</fo:instream-foreign-object>
But the same does not work in HTML or Excel. Is there something that I can do to make this work in HTML and Export?
Thanks
Anoop