Javascript的 SVG 解析器和渲染器:canvg
jopen
11年前
canvg 是个 SVG 解析器和渲染器,把 URL 转换成 SVG 文件,或者是 SVG 文本文件。它使用 Javascript 解析,渲染出 Canvas 元素,渲染速度跟本地 SVG 一样。
<script type="text/javascript"> window.onload = function() { //load '../path/to/your.svg' in the canvas with id = 'canvas' canvg('canvas', '../path/to/your.svg') //load a svg snippet in the canvas with id = 'drawingArea' canvg(document.getElementById('drawingArea'), '<svg>...</svg>') //ignore mouse events and animation canvg('canvas', 'file.svg', { ignoreMouse: true, ignoreAnimation: true }) } </script>