赞
踩
在后台管理项目中,想到把页面导出为pdf格式的文件,可以使用html2canvas和jspdf 插件实现
npm install html2canvas --save
npm install jspdf --save
2、util.js文件中封装导出方法
// 引入依赖
import html2canvas from 'html2canvas'
import JsPDF from 'jspdf'// 封装方法
export function downloadPDF(ele, pdfName) {
window.scrollTo(0, 0)
const eleW = ele.offsetWidth // 获得该容器的宽
const eleH = ele.offsetHeight // 获得该容器的高
const eleOffsetTop = ele.offsetTop // 获得该容器到文档顶部的距离
const eleOffsetLeft = ele.offsetLeft // 获得该容器到文档最左的距离var canvas = document.createElement('canvas')
var abs = 0const win_in = document.documentElement.clientWidth || document.body.clientWidth
// 获得当前可视窗口的宽度(不包含滚动条)
const win_out = window.innerWidth // 获得当前窗口的宽度(包含滚动条)if (win_out > win_in) {
// abs = (win_o - win_i)/2; // 获得滚动条长度的一半
abs = (win_out - win_in) / 2 // 获得滚动条宽度的一半
}
canvas.width = eleW * 2 // 将画布宽&&高放大两倍
canvas.height = eleH * 2var context = canvas.getContext('2d')
context.scale(2, 2)
context.translate(-eleOffsetLeft - abs, -eleOffsetTop)
// 这里默认横向没有滚动条的情况,因为offset.left(),有无滚动条的时候存在差值,因此
// translate 的时候,要把这个差值去掉html2canvas(ele, {
dpi: 400,
scale: 3,
// allowTaint: true, //允许 canvas 污染, allowTaint参数要去掉,否则是无法通过toDataURL导出canvas数据的
useCORS: true // 允许canvas画布内 可以跨域请求外部链接图片, 允许跨域请求。
}).then((canvas) => {
var contentWidth = canvas.width
var contentHeight = canvas.height
// 一页pdf显示html页面生成的canvas高度;
var pageHeight = contentWidth / 595.28 * 841.89
// 未生成pdf的html页面高度
var leftHeight = contentHeight
// 页面偏移
var position = 0
// a4纸的尺寸[595.28,841.89],html页面生成的canvas在pdf中图片的宽高
var imgWidth = 595.28
var imgHeight = 595.28 / contentWidth * contentHeight
var pageData = canvas.toDataURL('image/jpeg', 1.0)
var pdf = new JsPDF('', 'pt', 'a4')
// 有两个高度需要区分,一个是html页面的实际高度,和生成pdf的页面高度(841.89)
// 当内容未超过pdf一页显示的范围,无需分页
// console.log('处理完画布高度:' + contentHeight)
// console.log('每页高度:' + pageHeight)
// console.log(imgWidth, imgHeight);if (leftHeight < pageHeight) {
// 在pdf.addImage(pageData, 'JPEG', 左,上,宽度,高度)设置在pdf中显示;
pdf.addImage(pageData, 'JPEG', 0, 0, imgWidth, imgHeight)
} else { // 分页
while (leftHeight > 10) {
// console.log(leftHeight)
pdf.addImage(pageData, 'JPEG', 0, position, imgWidth, imgHeight)
leftHeight -= pageHeight
position -= 871.89
// 避免添加空白页
if (leftHeight > 30) {
console.log(leftHeight, '添加空白页')
pdf.addPage()
}
}
}
// 可动态生成
pdf.save(pdfName)
window.open(pdf.output('bloburl'))// 新标签打开生成的pdf
})
}
/***************** html *****************/
<div id="html2canvas"
ref="html2canvas">
<!--需要打印的内容-->
</div>/***************** js *****************/
import { downloadPDF } from '@/utils/util.js'
downloadPDF(document.querySelector('#html2canvas'), 'pdf文件名')
4、防止打印的内容分页,如table表格,可以为之添加固定宽度
/***************** css *****************/
table { width:700px } --设置固定宽度
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。