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.google.de/intl/de_ALL/images/logos/images_logo_lg.gif
)?
My Problem is that the following works:
<image x="100" y="100" width="100" height="100" xlink:href="http://www.google.de/intl/de_ALL/images/logos/images_logo_lg.gif">
</image>
and with the following, i'm just getting a white page:
<image x="100" y="100" width="100" height="100" href="C:\google.png"></image>
Solved the problem...:
<image x="100" y="100" width="100" height="100" xlink:href="file://C:\google.png"></image>
Thank you!
Have you tried "file:///c:/google.png"
?
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With