当前位置:   article > 正文

使用printJS、html2Canvas实现打印功能_html2canvas打印

html2canvas打印

js文件如下:

import html2Canvas from "html2canvas";
import printJS from 'print-js'
export default {
  install(Vue /*options*/) {
    Vue.prototype.pintDom = function (dom, title) { // 转图片打印
      html2Canvas(document.querySelector(dom), {
        allowTaint: false,
        useCORS: false,
        height: document.querySelector(dom).outerHeight,
        width: document.querySelector(dom).outerWidth,
        windowWidth: document.body.scrollWidth,
        windowHeight: document.body.scrollHeight
      }).then((canvas) => {
        const url = canvas.toDataURL()
        printJS({
          printable: url,
          type: 'image',
          documentTitle: title
        })
      })
    }
  }
};

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

调用如下:

<el-button @click="pintDom('#pintBox', '打印标题')"></el-button>
  • 1
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号