当前位置 : 主页 > 网页制作 > html >

html转换成canvas

来源:互联网 收集:自由互联 发布时间:2021-06-12
使用的工具是:html2canvas html2canvas( this .currentRef) .then( async (canvas) = { let url = canvas.toDataURL( ‘ image/png ‘ ) this .largeScreenForm.screenshotImage = url }) this .currentRef是要操作的div备注:如果要生成

使用的工具是:html2canvas

html2canvas(this.currentRef)
          .then(async (canvas) => {
            let url = canvas.toDataURL(image/png)
            this.largeScreenForm.screenshotImage = url
            })
this.currentRef是要操作的div备注:如果要生成图片的div有背景图,那么背景图必须是base64,不然转canvas失败
网友评论