Converting Canvas to Pdf using JsPDF

前端 未结 1 406
萌比男神i
萌比男神i 2021-02-05 14:08

I am trying to convert canvas into pdf but i get clean white pdf in result Here is the code, I am not being able to figure out what i am missing..

function HtmlT         


        
相关标签:
1条回答
  • 2021-02-05 15:11

    Try this instead:

    var pdf = new jsPDF('p','pt','a4');
    
    pdf.addHTML(document.body,function() {
        pdf.output('datauri');
    });
    

    See http://mrrio.github.io/jsPDF/

    0 讨论(0)
提交回复
热议问题