gpt4 book ai didi

javascript - 如何在 two.js 中解释外部 svg 文件

转载 作者:行者123 更新时间:2023-11-30 10:20:23 24 4
gpt4 key购买 nike

在 two.js 中有什么方法可以解释带有对象标签的外部 svg 文件?我尝试了下面的方法但是..

HTML

<object type="image/svg+xml" data="./svg/mydrawing.svg" id="mysvg"></object>

JS

var mySvg = document.getElementById("mysvg").contentDocument;
var shape = two.interpret(mySvg);
console.log(shape);

//in console:
Uncaught TypeError: Cannot call method 'toLowerCase' of undefined

如果我可以导入一个外部 .svg 文件就好了,因为我的 svg 文件太大而无法用 HTML 写成内联 SVG。

提前致谢。

最佳答案

您可能需要在 contentDocument 中选择 svg 标签。例如:

var svgObject = document.getElementsByTagName('object')[0];
svgObject.onload = function(){
var mySvg = svgObject.contentDocument.getElementsByTagName('svg')[0];
var two = new Two();
var shape = two.interpret(mySvg);
console.log(shape);
};

关于javascript - 如何在 two.js 中解释外部 svg 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21720790/

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