使用pdfmake导出pdf文件

package配置pdfmake html2canvas,然后npm安装

javascript 复制代码
"pdfmake": "0.2.10",
"html2canvas": "1.4.1",

使用如下,

html里面组件加个id为exportPdf

然后调用下面的方法即可

输出的pdf为整个组件的截图

javascript 复制代码
import * as pdfMake from 'pdfmake/build/pdfmake';
import html2canvas from 'html2canvas';

exportPdf() {
    const widthScale = 2;
    const pdfWidth = 600 * widthScale; // pdf宽度
    const cntElem = document.getElementById('exportPdf');// 组件的id
    const width = cntElem.offsetWidth;
    const height = cntElem.scrollHeight;
    const scale = 3; // 数字越大,导出的pdf越清晰
    const opts = {
      scale: scale,
      width: width,
      height: height,
      useCORS: true,
    };

    html2canvas(cntElem, opts).then(canvas => {
      const contents = [];
      contents.push({
        image: canvas.toDataURL('image/jpeg'),
        width: pdfWidth,
      });

      pdfMake
        .createPdf({
          pageSize: {
            width: pdfWidth,
            height: pdfWidth / (width / height), // 按照实际高度比,自定义pdf高度
          },
          pageMargins: [0, 0],
          content: contents,
        })
        .download('11111');//1111是pdf的名称
    });
  }
相关推荐
晨曦_子画13 分钟前
将 HTML 转换为 JSX:JSX 和 JSX 规则
前端·javascript·html
新中地GIS开发老师26 分钟前
GIS开发到底能应用在哪些行业 ?
java·javascript·arcgis·前端框架·echarts
前端Hardy1 小时前
探索 HTML 和 CSS 实现的蜡烛火焰
前端·javascript·css·html·css3
生椰拿铁You1 小时前
Node.js
node.js
yimengsama1 小时前
Node.js | Yarn下载安装与环境配置
前端·经验分享·笔记·npm·node.js·电脑·yarn
佚名程序员1 小时前
【Node.js】使用 Node.js 需要了解多少 JavaScript?
javascript·node.js
佚名程序员1 小时前
【Node.js】Node.js 和浏览器之间的差异
前端·node.js
yimengsama1 小时前
Node.js | npm下载安装及环境配置教程
前端·经验分享·笔记·webpack·npm·node.js·电脑
三天不学习1 小时前
一文了解 node 包管理工具: npm npx nvm nrm
npm·node.js
Fly_hao.belief2 小时前
vue内置指令和自定义指令
前端·javascript·vue.js