组件转PDF、图片

组件转图片    html-to-image

Html-to-image NPM | npm.io

组件转PDF    html2canvas、jspdf

import html2canvas from "html2canvas";
import jsPDF from "jspdf";

function convert_to_pdf(id, name) {
  let component = document.getElementById(id);
  component.style.overflow = "visible";
  html2canvas(component, {
    height: document.getElementById(id).scrollHeight,
    width: document.getElementById(id).scrollWidth,
    background: "#FFF",
    allowTaint: true,
    scale: 1.5,
    useCORS: true
  }).then(canvas => {
    let pdf = new jsPDF("p", "mm", "a4");
    let ctx = canvas.getContext("2d"),
      //A4大小,210mm x 297mm
      a4_width = 210,
      a4_height = 297,
      img_height = Math.floor((a4_height * canvas.width) / a4_width),
      rendered_height = 0;

    while (rendered_height < canvas.height) {
      let page = document.createElement("canvas");
      page.width = canvas.width;
      page.height = Math.min(img_height, canvas.height - renderedHeight);
      page
        .getContext("2d")
        .putImageData(
          ctx.getImageData(
            0,
            rendered_height,
            canvas.width,
            Math.min(img_height, canvas.height - rendered_height)
          ),
          0,
          0
        );
      pdf.addImage(
        page.toDataURL("image/jpeg", 1.0),
        "JPEG",
        0, //边距
        0, //边距
        a4_width,
        Math.min(a4_height, (a4_width * page.height) / page.width)
      );
      rendered_height += img_height;
      if (rendered_height < canvas.height) {
        pdf.addPage();
      }
    }
    pdf.save(name + ".pdf");
  });
  component.style.overflow = "auto";
}

export { convert_to_pdf };

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值