How to make PDF from React?

前端 未结 3 913
余生分开走
余生分开走 2021-01-03 06:31

I am going to use jsPDF library in React.JS but it got error, please let me know if someone get my query. I was trying to this more than 2 days but I can\'t.

3条回答
  •  醉酒成梦
    2021-01-03 06:52

    We can now also convert React components directly to pdf.

    The idea is to pass the react-rendered through following transformation: DOM -> CANVAS -> PNG -> PDF

    For DOM to Canvas, we can use the html2canvas library. Canvas to PNG is straight forward. From PNG to PDF, we can use jsDom.

    I've posted an answer explaining the same with more details and code samples here.

提交回复
热议问题