JS,使用xlink:href将svg保存为png错误

时间:2014-07-08 09:13:11

标签: javascript jquery html5 svg d3.js

我尝试将svg保存到客户端的png。 按照此说明http://techslides.com/save-svg-as-an-image/ 如果没有img in svg或img没有属性xlink:href,它可以保存很好。 错误:

This page contains the following errors:

error on line 1 at column 215: Namespace prefix xlink for href on image is not defined
Below is a rendering of the page up to the first error.

任何人都有经验,请帮助我!

1 个答案:

答案 0 :(得分:1)

您可以添加xlink命名空间,因为错误表明了这一点。在d3中将是:

.attr("xmlns:xlink", "http://www.w3.org/1999/xlink")