您的位置:首页 > 汽车 > 新车 > 公司起名大全2023最新版的免费_十大黄金软件app免费_电商网站设计模板_软文广告经典案例300

公司起名大全2023最新版的免费_十大黄金软件app免费_电商网站设计模板_软文广告经典案例300

2025/4/3 10:58:43 来源:https://blog.csdn.net/Ariel_tilamisu/article/details/146829247  浏览:    关键词:公司起名大全2023最新版的免费_十大黄金软件app免费_电商网站设计模板_软文广告经典案例300
公司起名大全2023最新版的免费_十大黄金软件app免费_电商网站设计模板_软文广告经典案例300

环境及插件配置:(理论上vue2应该也可以使用,没有试验过)

"vue": "^3.2.36",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.2",

必须安装 html2canvas 与 jspdf

该方法中用到了一个判断数据类型的小方法

 * 判断数据类型* @param {any} value * @returns {String}* 返回数据为:* "[object Number]","[object String]","[object Boolean]","[object Date]","[object RegExp]"* "[object Object]","[object Array]","[object Function]","[object Null]","[object Undefined]"*/function getDataType(value) {return Object.prototype.toString.call(value)
}

将html页面导出为PDF

import jsPDF from 'jspdf';
import html2canvas from 'html2canvas';function getDataType(value) {return Object.prototype.toString.call(value)
}/*** 将页面导出为PDF* @param {Object} 参数为{},具体属性参数参照详细解释* @param {html} htmlDom 要导出的DOM片段* @param {String} exportTitle 导出文件的文件名* @param {String} watermark 水印 需要水印时传入即可 非必填* @param {String} color 水印颜色 - 默认 opacity 为0.3* @param {String} bgColor 导出的PDF背景色 - 默认为白色*/function exportToPDF({ htmlDom, exportTitle = "导出文件", watermark, color = '184,184,184, 0.3', bgColor = "#fff" }) {const A4Width = 197;const A4Height = 297;html2canvas(htmlDom,{scale: 2,useCORS: true,dpi: 300,backgroundColor: bgColor}).then(canvas => {const pdf = new jsPDF('p', 'mm', 'a4')const ctx = canvas.getContext('2d')// 水印if (watermark) {const contentWidth = canvas.widthconst contentHeight = canvas.heightconsole.log(watermark)ctx.textAlign = 'center';ctx.textBaseline = 'middle';ctx.rotate((20 * Math.PI) / 180);ctx.font = '20px Microsoft Yahei';ctx.fillStyle = color;for (let i = contentWidth * -1; i < contentWidth; i += 400) {for (let j = contentHeight * -1; j < contentHeight; j += 400) {// 填充文字,x 间距, y 间距ctx.fillText(watermark, i, j);}}}const imgHeight = Math.floor(A4Height * canvas.width / A4Width)let rendereHeight = 0while (rendereHeight < canvas.height) {const page = document.createElement('canvas')page.width = canvas.widthpage.height = Math.min(imgHeight, canvas.height - rendereHeight)page.getContext('2d').putImageData(ctx.getImageData(0, rendereHeight, canvas.width, Math.min(imgHeight, canvas.height - rendereHeight)), 0, 0)pdf.addImage(page.toDataURL('image/jpeg', 1.0), 'PNG', 10, 10, A4Width, Math.min(A4Height, A4Width * page.height / page.width))rendereHeight += imgHeightif (rendereHeight < canvas.height) {pdf.addPage()}}pdf.save(exportTitle + '.pdf')})
}export {exportToPDF
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com