纯前端html导出pdf 您所在的位置:网站首页 长pdf怎么分页打印一页 纯前端html导出pdf

纯前端html导出pdf

2023-08-13 09:48| 来源: 网络整理| 查看: 265

   // 导出之前将dom的overflow:auto设置成visible    this.$('#boardPdf').css({'overflow-y': 'visible', 'height': 'auto'}) this.$('#app').css({'overflow-y': 'visible', 'height': 'auto'}) this.$('body').css({'overflow-y': 'visible', 'height': 'auto'})

// eslint-disable-next-line html2canvas(document.querySelector('#boardPdf'), { scale: 2, onrendered: function (canvas) { var contentWidth = canvas.width var contentHeight = canvas.height // 一页pdf显示html页面生成的canvas高度; var pageHeight = contentWidth / 592.28 * 841.89 // 未生成pdf的html页面高度 var leftHeight = contentHeight // pdf页面偏移 var position = 0 // a4纸的尺寸[595.28,841.89],html页面生成的canvas在pdf中图片的宽高 var imgWidth = 595.28 var imgHeight = 592.28 / contentWidth * contentHeight var pageData = canvas.toDataURL('image/jpeg', 1.0) // eslint-disable-next-line var pdf = new jsPDF('', 'pt', 'a4') // 有两个高度需要区分,一个是html页面的实际高度,和生成pdf的页面高度(841.89) // 当内容未超过pdf一页显示的范围,无需分页 if (leftHeight < pageHeight) { pdf.addImage(pageData, 'JPEG', 0, 0, imgWidth, imgHeight) } else { while (leftHeight > 0) { pdf.addImage(pageData, 'JPEG', 0, position, imgWidth, imgHeight) leftHeight -= pageHeight position -= 841.89 // 避免添加空白页 if (leftHeight > 0) { pdf.addPage() } } }       // 导出pdf文件命名 pdf.save('report_pdf_' + new Date().getTime() + '.pdf') }, background: '#0B1A48' })  // 导出pdf后,将dom原本的属性设置回去 this.$('#boardPdf').css({'overflow-y': 'auto', 'height': '100%'}) this.$('#app').css({'overflow-y': 'auto', 'height': '100%'}) this.$('body').css({'overflow-y': 'auto', 'height': '100%'})}



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有