[xsl] XSLT to SVG Image not appearing

Subject: [xsl] XSLT to SVG Image not appearing
From: "Mitchell, Lincoln L." <Lincoln.Mitchell@xxxxxxxxxxxxxxx>
Date: Mon, 15 Sep 2003 19:47:16 +0800
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


Current Thread