Using jspdf to save html page as pdf, saved pdf contains incomplete page content if browser is zoomed, Why?

前端 未结 2 626
失恋的感觉
失恋的感觉 2020-12-06 20:53

I am using jspdf and html2canvas combination to save html page as pdf. A pdf copy of current page is saved the moment you click a button. The problem is, if you zoom in the

2条回答
  •  再見小時候
    2020-12-06 21:12

    I was going through the same problem, To do this what I did is I made a copy of printing div and while clicking print button I attached div copy to my dom with margin-top:500px

    After I got its image then I hide this copy of the div, and set margin-top:0px

    I hope this will work for you.

提交回复
热议问题