Generating a PDF file from React Components

后端 未结 8 1965
無奈伤痛
無奈伤痛 2020-12-02 10:45

I have been building a polling application. People are able to create their polls and get data regarding the question(s) they ask. I would like to add the functionality to l

8条回答
  •  南方客
    南方客 (楼主)
    2020-12-02 11:19

    Rendering react as pdf is generally a pain, but there is a way around it using canvas.

    The idea is to convert : HTML -> Canvas -> PNG (or JPEG) -> PDF

    To achieve the above, you'll need :

    1. html2canvas &
    2. jsPDF

    import React, {Component, PropTypes} from 'react';
    
    // download html2canvas and jsPDF and save the files in app/ext, or somewhere else
    // the built versions are directly consumable
    // import {html2canvas, jsPDF} from 'app/ext';
    
    
    export default class Export extends Component {
      constructor(props) {
        super(props);
      }
    
      printDocument() {
        const input = document.getElementById('divToPrint');
        html2canvas(input)
          .then((canvas) => {
            const imgData = canvas.toDataURL('image/png');
            const pdf = new jsPDF();
            pdf.addImage(imgData, 'JPEG', 0, 0);
            // pdf.output('dataurlnewwindow');
            pdf.save("download.pdf");
          })
        ;
      }
    
      render() {
        return (
    Note: Here the dimensions of div are same as A4
    You Can add any component here
    ); } }

    The snippet will not work here because the required files are not imported.

    An alternate approach is being used in this answer, where the middle steps are dropped and you can simply convert from HTML to PDF. There is an option to do this in the jsPDF documentation as well, but from personal observation, I feel that better accuracy is achieved when dom is converted into png first.

    Update 0: September 14, 2018

    The text on the pdfs created by this approach will not be selectable. If that's a requirement, you might find this article helpful.

提交回复
热议问题