jpg をラップするだけの svg の簡単な例があります。HTMLは次のとおりです。
<html>
<head>
</head>
<body>
<div id="theimageholder">
<img id="theimage" src="Images/simplepng.svg"></img>
</div>
</body>
</html>
そして、ここに simplepng.svg の SVG があります。
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"
width="410" height="340"
viewBox="0 0 200 200"
zoomAndPan="enable"
preserveAspectRatio="xMidYMin meet" >
<image x="0" y="0" width="200px" height="200px" xlink:href="earth.jpg"/>
</svg>
これは IE9 では機能しますが、Chrome や Firefox では機能しません。どちらも何も表示されません。xlink:href はこれらのブラウザーで動作しますか?