react 实现导出PDF功能

1.首先需要两个库

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

2.封装

/* 
PDF导出封装
title:文档下载名字
node:dom最完成节点-- ID选择器
*/
export const exportPDF = (title:string,node:any) =>{
  const element = document.getElementById(node);    // 这个dom元素是要导出pdf的div容器
  const w = (element as any).offsetWidth;    // 获得该容器的宽
  const h = (element as any).offsetWidth;    // 获得该容器的高
  const offsetTop = (element as any).offsetTop;    // 获得该容器到文档顶部的距离
  const offsetLeft = (element as any).offsetLeft;    // 获得该容器到文档最左的距离
  const canvas = document.createElement("canvas");
  let abs = 0;
  const win_i =  document.body.clientWidth;    // 获得当前可视窗口的宽度(不包含滚动条)
  const win_o = window.innerWidth;    // 获得当前窗口的宽度(包含滚动条)
  if (win_o > win_i) {
      abs = (win_o - win_i) / 2;    // 获得滚动条长度的一半
  }
  canvas.width = w * 2;    // 将画布宽&&高放大两倍
  canvas.height = h * 2;
  const context = canvas.getContext("2d");
  (context as any).scale(2, 2);
  (context as any).translate(-offsetLeft - abs, -offsetTop);
  // 这里默认横向没有滚动条的情况,因为offset.left(),有无滚动条的时候存在差值,因此
  // translate的时候,要把这个差值去掉
  html2canvas((element as any),{
      allowTaint: true,
      scale: 2 // 提升画面质量,但是会增加文件大小
  }).then(function (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/jpeg', 1.0);
      const str:any = ''
      const pdf = new jsPDF(str, '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(`${title}.pdf`);
  });
}

3.使用

//exportPDF(你的标题,ID选择器)
exportPDF(crfTitle,'crfContent')

你可能感兴趣的:(react,前端)