Is there a difference in the syntax when using the SVG-image-element with a local source (e.g. C:\\image.png
) and a source on the internet (e.g http://www
Solved the problem...:
<image x="100" y="100" width="100" height="100" xlink:href="file://C:\google.png"></image>
Thank you!
I think you should try use the file:// protocol
Take the remote page and do a save page as on chrome and see what manipulation he do to the image tag.
The path you should use for macOS is:
file:///Users/aizat/.../image.png
Have you tried "file:///c:/google.png"
?