4

C:\image.png将 SVG-image-element 与本地源(例如)和 Internet 上的源(例如)一起使用时,语法是否存在差异http://www.google.de/intl/de_ALL/images/logos/images_logo_lg.gif

我的问题是以下工作:

<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>

和以下,我只是得到一个白页:

<image x="100" y="100" width="100" height="100" href="C:\google.png"></image>
4

4 回答 4

4

你试过"file:///c:/google.png"吗?

于 2012-09-17T09:01:50.417 回答
3

解决了问题...:

<image x="100" y="100" width="100" height="100" xlink:href="file://C:\google.png"></image>

谢谢!

于 2012-09-17T09:08:13.030 回答
1

您应该为 macOS 使用的路径是:

file:///Users/aizat/.../image.png

于 2019-04-09T02:08:04.337 回答
0

我认为您应该尝试使用 file:// 协议

获取远程页面并像在 chrome 上一样保存页面,看看他对图像标签做了什么操作。

于 2012-09-17T09:02:03.030 回答