html5 – 呈现HTML元素

前端之家收集整理的这篇文章主要介绍了html5 – 呈现HTML元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法在画布中呈现任意的HTML元素(然后访问其缓冲区…)。

解决方法

您将不会获得真正的HTML呈现到< canvas>因为画布上下文没有渲染HTML元素的功能

有一些模拟:

html2canvas项目http://html2canvas.hertzen.com/index.html(基本上是建立在JavaScript画布上的HTML渲染器尝试)

HTML到SVG到< canvas>有可能根据您的用例:

https://github.com/miohtama/Krusovice/blob/master/src/tools/html2svg2canvas.js

另外如果您使用Firefox you can hack some extended权限,然后将DOM窗口渲染为< canvas>

https://developer.mozilla.org/en-US/docs/HTML/Canvas/Drawing_Graphics_with_Canvas?redirectlocale=en-US&redirectslug=Drawing_Graphics_with_Canvas#Rendering_Web_Content_Into_A_Canvas

原文链接:https://www.f2er.com/html5/169018.html

猜你在找的HTML5相关文章