gpt4 book ai didi

xml - SVG 图像标签不起作用

转载 作者:数据小太阳 更新时间:2023-10-29 01:39:14 26 4
gpt4 key购买 nike

我正在研究 SVG 教程 here ,并且无法加载图像。 XAMPP 给我一个错误,上面写着

This XML file does not appear to have any style information associated with it. The document tree is shown below.

我已经从文档中复制了 pasta'd,但它仍然不起作用。代码如下:

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="5cm" height="4cm" version="1.1"
xmlns="localhost" xmlns:xlink= "localhost/svgtest">
<image xlink:href="My_Image.jpg" x="0" y="0" height="50px" width="50px"/>
</svg>

谷歌搜索错误消息告诉我 XML 以某种方式损坏,但除了区域设置和图像标题之外我没有更改任何内容。

最佳答案

你弄错了命名空间。

改变

xmlns="localhost" xmlns:xlink= "localhost/svgtest"

xmlns="http://www.w3.org/2000/svg" xmlns:xlink= "http://www.w3.org/1999/xlink"

也许你应该看看这个 Namespaces Crash Course通过 MDN。

关于xml - SVG 图像标签不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11104324/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com