You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I using JS PDF v 1.3.3, with in angular2 project. I am generating pdf with addHTML function. Code works fine for 26 pages. onces it crosses 26 pages complete pdf is generted with black images. I am using below code to generate the pdf.
has any one faced this kind of issue?
this.pdfDoc.addHTML(this.pages[index], 0, 0, this @.options, () => {
let obj = this.getClientHeightWidth(index);
this.pdfDoc.addPage(obj.clientWidth, obj.clientHeight);
index++;
this.addPage(index);
});