html2canvas属性和使用方法以及如何使用html2canvas将HTML内容写入Canvas生成图片
程序员文章站
2022-03-25 15:48:54
如何使用js截取html页面为图片呢,下面为大家介绍一款js截图插件html2canvas.js
html2canvas.js 能够实现在用户浏览器端直接对整个或部分页面进行截屏...
如何使用js截取html页面为图片呢,下面为大家介绍一款js截图插件html2canvas.js
html2canvas.js 能够实现在用户浏览器端直接对整个或部分页面进行截屏。
html2canvas.js可以将当页面渲染成一个canvas图片,通过读取dom并将不同的样式应用到这些元素上实现。
它不需要来自服务器任何渲染,整张图片都是在客户端浏览器创建。当
浏览器不支持canvas时,将采用flashcanvas或explorercanvas技术代替实现。
以下浏览器能够很好的支持该脚本:firefox 3.5+, google chrome, opera新的版本, ie9以上的浏览器。
基本语法
html2canvas(element, options); html2canvas(document.body, { onrendered: function(canvas) { var url = canvas.todataurl();//图片地址 document.body.appendchild(canvas); }, width: 300, height: 300
或者使用es6的promise
//两个参数:所需要截图的元素id,截图后要执行的函数, canvas为截图后返回的最后一个canvas html2canvas(document.getelementbyid('id')).then(function(canvas) {document.body.appendchild(canvas);});
html2canvas基本参数说明
参数名称 | 类型 | 默认值 | 描述 |
---|---|---|---|
allowtaint | boolean | false | whether to allow cross-origin images to taint the canvas---允许跨域 |
background | string | #fff | canvas background color, if none is specified in dom. set undefined for transparent---canvas的背景颜色,如果没有设定默认透明 |
height | number | null | define the heigt of the canvas in pixels. if null, renders with full height of the window.---canvas高度设定 |
letterrendering | boolean | false | whether to render each letter seperately. necessary if letter-spacing is used.---在设置了字间距的时候有用 |
logging | boolean | false | whether to log events in the console.---在console.log()中输出信息 |
proxy | string | undefined | url to the proxy which is to be used for loading cross-origin images. if left empty, cross-origin images won't be loaded.---代理地址 |
tainttest | boolean | true | whether to test each image if it taints the canvas before drawing them---是否在渲染前测试图片 |
timeout | number | 0 | timeout for loading images, in milliseconds. setting it to 0 will result in no timeout.---图片加载延迟,默认延迟为0,单位毫秒 |
width | number | null | define the width of the canvas in pixels. if null, renders with full width of the window.---canvas宽度 |
usecors | boolean | false | whether to attempt to load cross-origin images as cors served, before reverting back to proxy--这个我也不知道是干嘛的 |
例子
<!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>html2canvas example</title> <script type="text/javascript" src="html2canvas.js"></script> </head> <script type="text/javascript"> function takescreenshot() { console.log('test'); html2canvas(document.getelementbyid('view'), { onrendered: function(canvas) { document.body.appendchild(canvas); }, // width: 300, // height: 300 }); } </script> <body> <div id="view" style="background:url(test.jpg) 50%; width: 700px; height: 500px;"> <input type="button" value="截图" onclick="takescreenshot()"> </div> </body> </html>
效果图如下:
截图效果如下:
最后附上html2canvas官网链接
上一篇: JS实现动态无缝轮播
下一篇: js实现拖动缓动效果