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 28 29 30 31 32 33 34
| import html2canvas from "html2canvas"; import { jsPDF } from "jspdf";
export function html2Pdf(dom, title = "file") { return new Promise((resolve, reject) => { html2canvas(dom, { allowTaint: true, scrollY: 0, scrollX: 0, useCORS: true, width: dom.offsetWidth, height: dom.offsetHeight, }) .then((canvas) => { let widthHeightDiff = canvas.width - canvas.height; let orientation = widthHeightDiff > 0 ? "landscape" : "portrait";
let pdf = new jsPDF(orientation, "px", [canvas.width, canvas.height]); pdf.addImage(canvas, "png", 0, 0, canvas.width, canvas.height); pdf.save(title + ".pdf"); resolve(); }) .catch((err) => { reject(err); }); }); }
|