Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

pdf table files download react not working

let input = document.getElementById("divToPrint"); 

html2canvas(input)
  .then((canvas) => {
    const imgData = canvas.toDataURL('image/png');
    const pdf = new jsPDF();
    pdf.addImage(imgData, 'PNG', 0, 0);
    pdf.save("download.pdf");  
  });
;
 
PREVIOUS NEXT
Tagged: #pdf #table #files #download #react #working
ADD COMMENT
Topic
Name
4+9 =