-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdf.js
27 lines (22 loc) · 924 Bytes
/
pdf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// pdf.js
document.addEventListener('DOMContentLoaded', function() {
// Generate PDF
document.getElementById('generatePdf').addEventListener('click', generatePdf);
});
// Function to generate PDF
function generatePdf() {
// Check if jsPDF is loaded
if (typeof window.jspdf === 'undefined') {
alert('PDF library is still loading. Please try again in a moment.');
return;
}
const { jsPDF } = window.jspdf;
html2canvas(document.getElementById('invoicePreview')).then(canvas => {
const imgData = canvas.toDataURL('image/png');
const pdf = new jsPDF('p', 'mm', 'a4');
const width = pdf.internal.pageSize.getWidth();
const height = (canvas.height * width) / canvas.width;
pdf.addImage(imgData, 'PNG', 0, 0, width, height);
pdf.save(`Invoice-${document.getElementById('invoiceNumber').value || 'new'}.pdf`);
});
}