Guest User

Untitled

a guest
Oct 17th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. openExportPDFModal() {
  2. html2canvas(this.exportPDFRef.current)
  3. .then((canvas) => {
  4. this.doc = new jsPDF();
  5. const img = canvas.toDataURL("image/png");
  6.  
  7. const width = this.doc.internal.pageSize.getWidth();
  8. const height = this.doc.internal.pageSize.getHeight();
  9.  
  10. this.doc.addImage(img, 'PNG', 0, 0, width, height);
  11. this.doc.save(this.state.exportPDFName);
  12. });
  13. }
Add Comment
Please, Sign In to add comment