Summary -
In this topic, we described about the topic_name with detailed example.
<svg> with <image> element can insert the Raster graphical image within the SVG.
Example -
Below example describes about how to insert image in svg.
<html>
<head>
<title>SVG Image</title>
</head>
<body>
<svg width="400" height="250">
<image x="40" y="50" xlink:href="img/logos/footer.png"
width="150" height="150"/>
</svg>
</body>
</html>