Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法从中获取 svg 文本(图像)THREE.SVGRenderer?
THREE.SVGRenderer
目前使用 r58。
您应该能够访问 SVG DOMrenderer.domElement
renderer.domElement
要将其转换为 XML 字符串(如果这就是“svg 文本”的意思):
var XMLS = new XMLSerializer(); var svgfile = XMLS.serializeToString(renderer.domElement);
您可以尝试将页面打印为 PDF。