js-html2canvas导出html图片 导出pdf

vue引入安装并引入

import html2canvas from 'html2canvas'
import jsPDF from 'jspdf'

  

const height = document.getElementById('canvasHeight').offsetHeight + 143 + 138 // 需要导出页面的高度
        html2canvas(this.$refs.imageWrapper, {
          backgroundColor: null,
          height: height,
          windowHeight: height, // 获取y方向滚动条中的内容
          useCORS: true // 保证跨域图片的显示
        }).then((canvas) => {
          const contentWidth = canvas.width;
          const contentHeight = canvas.height;
          // 一页pdf显示html页面生成的canvas高度;
          const pageHeight = contentWidth / 592.28 * 841.89;
          // 未生成pdf的html页面高度
          let leftHeight = contentHeight;
          // 页面偏移
          let position = 0;
          // a4纸的尺寸[595.28,841.89],html页面生成的canvas在pdf中图片的宽高
          const imgWidth = 595.28;
          const imgHeight = 592.28 / contentWidth * contentHeight;

          const pageData = canvas.toDataURL('image/png');
          var pdf = new jsPDF('', 'pt', 'a4');
          // 有两个高度需要区分,一个是html页面的实际高度,和生成pdf的页面高度(841.89)
          // 当内容未超过pdf一页显示的范围,无需分页
          if (leftHeight < pageHeight) {
            pdf.addImage(pageData, 'JPEG', 0, 0, imgWidth, imgHeight);
          } else {
            while (leftHeight > 0) {
              pdf.addImage(pageData, 'JPEG', 0, position, imgWidth, imgHeight)
              leftHeight -= pageHeight;
              position -= 841.89;
              // 避免添加空白页
              if (leftHeight > 0) {
                pdf.addPage();
              }
            }
          }
          pdf.save('导出.pdf')
        })

  

猜你喜欢

转载自www.cnblogs.com/zhengziru/p/12199642.html