先看效果:
VID_20241219_091221
1、使用之前:将html转pdf打印下载功能,使用html2canvas+jsPDF
npm install html2canvas --save
npm install jspdf --save
2、在你需要打印的标签上边 添加 id="dynamic-table-page"
printPage () {
var dom = document.querySelector('#dynamic-table-page')
const opt = {
allowTaint: true,
dpi: window.devicePixelRatio, // 提升导出文件的分辨率
scale: 2, // 提升导出文件的分辨率
backgroundColor: 'white',
useCORS: true,
height: dom.scrollHeight,
windowHeight: dom.scrollHeight,
windowWidth: dom.offsetWidth
}
html2canvas(document.getElementById('dynamic-table-page'), opt).then(
(canvas) => {
var pdf = new jsPDF('p', 'mm', 'a4') // A4纸,纵向
var ctx = canvas.getContext('2d')
var a4w = 190; var a4h = 277 // A4大小,210mm x 297mm,四边各保留10mm的边距,显示区域190x277
var imgHeight = Math.floor(a4h * canvas.width / a4w) // 按A4显示比例换算一页图像的像素高度
var renderedHeight = 0
while (renderedHeight < canvas.height) {
var page = document.createElement('canvas')
page.width = canvas.width
page.height = Math.min(imgHeight, canvas.height - renderedHeight)// 可能内容不足一页
// 用getImageData剪裁指定区域,并画到前面创建的canvas对象中
page.getContext('2d').putImageData(ctx.getImageData(0, renderedHeight, canvas.width, Math.min(imgHeight, canvas.height - renderedHeight)), 0, 0)
pdf.addImage(page.toDataURL('image/jpeg', 1.0), 'JPEG', 10, 10, a4w, Math.min(a4h, a4w * page.height / page.width)) // 添加图像到页面,保留10mm边距
renderedHeight += imgHeight
if (renderedHeight < canvas.height) { pdf.addPage() }// 如果后面还有内容,添加一个空页
}
pdf.save('文件名.pdf')
}
)
},
这样就可以把页面分页生成pdf文件,实现打印。