xsl-list
[Top] [All Lists]

XSLT to SVG Image not appearing

2003-09-15 04:47:16
Hi all,

Can anyone tell me why I can't see an image only text after running this 
transformation to SVG?
----------
<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
xmlns="http://www.w3.org/2000/svg";>
    <xsl:output method="xml" indent="yes" encoding="UTF-8" />
    <xsl:template match="/">
    <svg xmlns="http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink";>
        <image xlink:href="image.jpg" x="100" y="100" width="100" height="100"/>
        <text x="100" y="150" font-size="24">
            Some text
        </text>
    </svg>
    </xsl:template>
</xsl:stylesheet>
-----------

TIA

Linc

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>