Is there a way to display an image inside SVG Circle ?
I tried adding the image inside Svg element but the image does not appear in the circle.
<svg width="100" height="100">
<circle cx="50" cy="50" r="40"stroke="green" stroke-width="4" fill="yellow" />
<img src="starkeen_ane.jpg"/>
</svg>
Can you help me?