Javascript的 SVG 解析器和渲染器:canvg

jopen 10年前發布 | 37K 次閱讀 SVG 前端技術

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>

項目主頁:http://www.baiduhome.net/lib/view/home/1390809022289

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!