Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. const pdf = new jsPDF('l', 'px', 'a4');
  2. pdf.internal.scaleFactor = 0.75;
  3. const logo = html2canvas(document.getElementById('activityLogo'))
  4. pdf.addImage(logo, 'jpeg');
  5. pdf.save(`file.pdf`);
  6.  
  7. <ng-template #exportImage>
  8. <div class="pt-2 pb-5">
  9. <img alt="Information" id="activityLogo" src="assets/img/brand/png/Logo.png" width="100" />
  10. </div>
  11. </ng-template>
  12.  
  13. Cannot read property 'ownerDocument' of null
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement