【问题解决】将页面下载为PDF文件(前端实现)

在前端开发过程中,将html页面下载为pdf文件的思路:使用html2canvasjsPDF两个库,大致流程就是首先使用html2canvas库将组件内容转换为图像,然后使用jsPDF库将图像生成为PDF文件。

安装html2canvas库

npm install html2canvas

安装jsPDF库

npm install jsPDF

以下代码展示了,在React框架下,将子组件的HTML内容转换为PDF文件的代码

在这里插入图片描述

  • 父组件代码:
import React, { Component } from 'react';
import ReactDOM from "react-dom";
import ChildComponent from "./ChildComponent";
import html2canvas from "html2canvas";
import jsPDF from "jspdf";
import {Button} from "antd";

class MyDemo extends Component {
    downloadPDF = () => {
        const html = ReactDOM.findDOMNode(this.childRef);

        //使用html2canvas将子组件内容转换为图像
        html2canvas(html, {allowTaint:true, scale: 2, dpi: 500}).then((canvas) => {
            const imgData = canvas.toDataURL('src/images/pdfFile.png');

            //创建一个新的jsPDF实例
            const pdf = new jsPDF({
                orientation: 'portrait',
                unit: 'mm',
                format: 'a4',
            });
            const contentWidth = canvas.width;
            const contentHeight = canvas.height;
            const pageHeight = (contentWidth / 592.28) * 841.89

            const imgWidth = 595.28
            const imgHeight = (592.28 / contentWidth) * contentHeight

            //将图像添加到PDF中
            pdf.addImage(imgData, 'PNG', 0, 0, imgWidth, imgHeight);

            //保存PDF文件
            pdf.save('PDF文件名.pdf');
        })
    }

    render() {
        return (
            <div>
                <ChildComponent
                    ref={(ref) => this.childRef = ref}
                />
                <Button onClick={this.downloadPDF}>下载PDF文件</Button>
            </div>
        );
    }
}

export default MyDemo;
  • 子组件代码:
import React, { Component } from 'react';

class ChildComponent extends Component {
    constructor(props) {
        super(props);
    }

    render() {
        return (
            <div style={{padding: 50}}>
                <div>子组件</div>
                <div>子组件</div>
                <div>子组件</div>
                <div>子组件</div>
            </div>
        )
    }
}

export default ChildComponent

PDF文件下载效果
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

周兴

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值