Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. const html_source = document.getElementById('contentID'); // Get html
  2.  
  3. html2canvas(html_source).then(function(canvas) { // Convert to canvas
  4.  
  5. let imgData = canvas.toDataURL('image/png'); // Generates image that you can store
  6.  
  7. let pdf = new jsPDF('p', 'mm', 'a4'); //Create PDF, Note that you use the same image to create the PDF
  8. pdf.addImage(imgData, 'PNG', 10, 10);
  9. pdf.save('test.pdf');
  10. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement