主要使用到html2canvas和jspdf两个库,但是效果不是很好,如果单纯的是合同可以使用,如果是有element-ui这种第三方样式的框架,可能会导致样式丢失的问题。
1、安装
yarn add html2canvas jspdf -S
2、新建html2pdf.ts文件(用于封装导出),内容如下
import html2canvas from 'html2canvas';
import jsPDF from 'jspdf';
const html2Pdf = {
downPdf: (title: any, element: any, fn?: any) => {
const w = element.offsetWidth;// 获得该容器的宽
const h = element.offsetHeight;// 获得该容器的高
const offsetTop = element.offsetTop;// 获得该容器到文档顶部的距离
const offsetLeft = element.offsetLeft;// 获得该容器到文档最左的距离
const canvas: any = document.createElement("canvas");
let abs = 0;
let win_i = document.body.clientWidth;// 获得当前可视窗口的宽度(不包含滚动条)
let 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: any = canvas.getContext("2d");
context.scale(2, 2);
context.translate(-offsetLeft - abs, -offsetTop);
/**
* 这里默认横向没有滚动条的情况,因为offset.left(),有无滚动条的时候存在差值,
* 因此translate的时候,要把这个差值去掉
*/
html2canvas(element, {
allowTaint: false, // 是否允许跨域图片渲染画布
logging: false, // 是否启用日志
onclone: fn, // 打印完成的回调函数
useCORS: true, // 是否允许加载跨域图像
scale: window.devicePixelRatio * 2 // 渲染的像素比例
}).then((canvas: any) => {
const contentWidth = canvas.width;
const contentHeight = canvas.height;
// 一页pdf显示html页面生成的canvas高度;
const pageHeight = contentWidth / 575.28 * 841.89;
// 未生成pdf的html页面高度
let leftHeight = contentHeight;
//页面偏移
let position = 0;
/**
* a4纸的尺寸[595.28,841.89],html页面生成的canvas在pdf中图片的宽高
* 使用575.28是为了使pdf左右有边距
*/
let imgWidth = 575.28;
let imgHeight = 575.28 / contentWidth * contentHeight;
let pageData = canvas.toDataURL('image/jpeg', 1.0);
const pdf: any = new jsPDF('p', 'pt', 'a4');
/**
* 有两个高度需要区分,一个是html页面的实际高度,和生成pdf的页面高度(841.89)
* 当内容未超过pdf一页显示的范围,无需分页
*/
if (leftHeight < pageHeight) {
pdf.addImage(pageData, 'JPEG', 10, 10, imgWidth, imgHeight);
} else {// 分页
while (leftHeight > 0) {
pdf.addImage(pageData, 'JPEG', 10, position, imgWidth, imgHeight)
leftHeight -= pageHeight;
position -= 841.89;
// 避免添加空白页
if (leftHeight > 0) {
pdf.addPage();
}
}
}
pdf.save(title + '.pdf');
})
}
}
export default html2Pdf
- 3、使用(Home.vue)
<template>
<div id="print-box">
<div id="contain"></div>
</div>
<button class="no-print" @click="htmlTopdf">生成pdf</button>
</template>
<script lang="ts" setup>
import html2pdf from '../utils/html2pdf';
const htmlTopdf = () => {
html2pdf.getPdf('pdf文件', document.querySelector('#contain'), (res: any) => {
console.log('转化成功')
})
}
</script>