Farmer Card Generator
async function downloadPNG(){
const card =
document.getElementById(
"frontCard"
);
const canvas =
await html2canvas(card,{
scale:3
});
const link =
document.createElement("a");
link.download =
"Farmer-Card.png";
link.href =
canvas.toDataURL();
link.click();
}
async function downloadPDF(){
const card =
document.getElementById(
"frontCard"
);
const canvas =
await html2canvas(card,{
scale:3
});
const imgData =
canvas.toDataURL("image/png");
const { jsPDF } =
window.jspdf;
const pdf =
new jsPDF(
'landscape',
'mm',
[54,86]
);
pdf.addImage(
imgData,
'PNG',
0,
0,
86,
54
);
pdf.save(
'Farmer-Card.pdf'
);
}
function printCard(){
const front =
document.getElementById(
"frontCard"
).outerHTML;
const back =
document.getElementById(
"backCard"
).outerHTML;
const w =
window.open(
"",
"",
"width=900,height=700"
);
w.document.write(`
Print Farmer Card
टिप्पणियाँ
एक टिप्पणी भेजें
MINU ONLINESEVA CENTRE