前端页面导出为pdf文档

前端页面导出pdf可分页且图表不被分页分割

需求背景:前端导出个人简历信息为pdf文件
利用插件:
1.html2canvas:https://github.com/niklasvh/html2canvas
2.jsPdf:https://github.com/parallax/jsPDF

方法:

/**
 * @param  ele          要生成 pdf 的DOM元素(容器)
 * @param  padfName     PDF文件生成后的文件名字
 * @param  callback     下载完成之后的回调
 * */

function downloadPDF(ele, pdfName, callback) {
    html2canvas(ele, {
        dpi: 300,
        scale: 2,
        // allowTaint: true,  //允许 canvas 污染, allowTaint参数要去掉,否则是无法通过toDataURL导出canvas数据的
        useCORS: true  //允许canvas画布内 可以跨域请求外部链接图片, 允许跨域请求。
    }).then((canvas) => {
        //未生成pdf的html页面高度
        var leftHeight = canvas.height;
        var a4Width = 595.28
        var a4Height = 821.89 //(一张A4高=841.89减去20,使得上下边距空出20,pdf.addImage生成上边距(第四个参数=10)致使使得上下边距各10)
        //一页pdf显示html页面生成的canvas高度;
        var a4HeightRef = Math.floor(canvas.width / a4Width * a4Height);
        //pdf页面偏移
        var position = 0;
        var pageData = canvas.toDataURL('image/jpeg', 1.0);
        var pdf = new jsPDF('x', 'pt', 'a4');
        var index = 1,
            canvas1 = document.createElement('canvas'),
            height;
        pdf.setDisplayMode('fullwidth', 'continuous', 'FullScreen');

        function createImpl(canvas) {
            if (leftHeight > 0) {
                index++;
                var checkCount = 0;
                if (leftHeight > a4HeightRef) {
                    var i = position + a4HeightRef;
                    for (i = position + a4HeightRef; i >= position; i--) {
                        var isWrite = true
                        for (var j = 0; j < canvas.width; j++) {
                            var c = canvas.getContext('2d').getImageData(j, i, 1, 1).data
                            if (c[0] != 0xff || c[1] != 0xff || c[2] != 0xff) {
                                isWrite = false
                                break
                            }
                        }
                        if (isWrite) {
                            checkCount++
                            if (checkCount >= 10) {
                                break
                            }
                        } else {
                            checkCount = 0
                        }
                    }
                    height = Math.round(i - position) || Math.min(leftHeight, a4HeightRef);
                    if (height <= 0) {
                        height = a4HeightRef;
                    }
                } else {
                    height = leftHeight;
                }
                canvas1.width = canvas.width;
                canvas1.height = height;
                var ctx = canvas1.getContext('2d');
                ctx.drawImage(canvas, 0, position, canvas.width, height, 0, 0, canvas.width, height);
                if (position != 0) {
                    pdf.addPage();
                }
                pdf.addImage(canvas1.toDataURL('image/jpeg', 1.0), 'JPEG', 0, 10, a4Width, a4Width / canvas1.width * height);
                leftHeight -= height;
                position += height;
                if (leftHeight > 0) {
                    setTimeout(createImpl, 500, canvas);
                } else {
                    pdf.save(pdfName);
                    callback()
                }
            }
        }

        // 当内容未超过pdf一页显示的范围,无需分页
        if (leftHeight < a4HeightRef) {
            pdf.addImage(pageData, 'JPEG', 0, 10, a4Width, a4Width / canvas.width * leftHeight);
            pdf.save(pdfName)
            callback()
        } else {
            try {
                pdf.deletePage(0);
                setTimeout(createImpl, 500, canvas);
            } catch (err) {
                console.log(err);
            }
        }
    })
}

调用:

download() {
            this.loading = true
            this.$nextTick(() => {
                $('body').css({'overflow-y': 'visible', 'height': 'auto'})
                let pdfDom = $('.main')[0]
                pdfDom.style.background = "#FFFFFF";
                downloadPDF(pdfDom, `${this.basicInfo.empName}个人履历`, this.doComplete)
            })
        },
doComplete() {
            $('body').css({'overflow-y': 'hidden', 'height': '100%'})
            $('.main')[0].style.background = "#F4F7FA";
            this.loading = false
        },

问题一:导出的pdf出现黑色背景,导出且不全
解决:将要导出的dom背景色改为白色,对应代码:pdfDom.style.background = "#FFFFFF";修改body的样式,对应代码$('body').css({'overflow-y': 'visible', 'height': 'auto'});之后通过回调改回初始的状态。
问题二:html2canvers报图片跨域问题(即使html2canvas加上useCORS:true,也有可能出现此问题)
解决:将图片的url地址转换成base64展示

getBase64Image(url) {
            let image = new Image();
            image.setAttribute("crossOrigin", 'Anonymous')
            image.src = url;
            image.onload = function () {
                let canvas = document.createElement("canvas");
                canvas.width = image.width;
                canvas.height = image.height;
                let ctx = canvas.getContext("2d");
                ctx.drawImage(image, 0, 0, image.width, image.height);
                let dataURL = canvas.toDataURL('image/png') // 可选其他值 image/jpeg
                document.getElementById('topPhoto').src = dataURL
            }
        },

效果图:
在这里插入图片描述
注意:超过一页的表格还是会被分页分割的。

  • 0
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值