Самый простой способ вставить inline-svg (
Для просмотра ссылки Войди или Зарегистрируйся)
<svg width="320" height="250">
<defs>
<radialGradient id="mygradient" cx="50%" cy="50%">
<stop offset="80%" stop-color="white" stop-opacity="1"/>
<stop offset="100%" stop-color="white" stop-opacity="0.2"/>
</radialGradient>
<mask id="mymask">
<circle cx="110" cy="120" r="90" fill="url(#mygradient)"/>
<circle cx="220" cy="120" r="90" fill="url(#mygradient)"/>
</mask>
</defs>
<image xlink:href="p-0068.jpg" mask="url(#mymask)" x="0" y="0" width="320px" height="256px"/>
</svg>