I have image inside svg with viewBox, is it possible to make image ignore scaling caused by viewBox and always keep size image 50x50?
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="0 0 200 200" preserveAspectRatio="xMidYMid meet">
<image xlink:href="someimage.png" width="50" height="50"></image>
</svg>
Here is fiddle: http://jsfiddle.net/3LpxV/1/