DOM到SVG
用于将给定HTML DOM节点转换为可访问的SVG“屏幕截图”的库。
演示版 :camera_with_flash:
试用,该使用此库可让您获取任何网页的SVG屏幕截图。 您可以在找到源代码。
用法
import { documentToSVG , elementToSVG , inlineResources , formatXML } from 'dom-to-svg'
// Capture the whole document
const svgDocument = documentToSVG ( document )
// Capture specific element
const svgDocument = elementToSVG ( document . querySelector ( '#my-element' ) )
// Inline external resources (fonts
1