HTML5 canvas, convert canvas to PDF with jspdf.js

前端 未结 5 680
陌清茗
陌清茗 2021-02-04 12:10

I am trying to convert HTML5 canvas to PDF in JavaScript but I get a black background PDF. I tried to change the background color but still get black. The following is code I am

5条回答
  •  无人共我
    2021-02-04 13:00

    Just change the format JPEG to PNG

    pdf.addImage(imgData, 'PNG', 0, 0, 1350, 750);
    

提交回复
热议问题