gpt4 book ai didi

angular - 如何在angular2中将HTML转换为pdf?

转载 作者:太空狗 更新时间:2023-10-29 17:46:31 26 4
gpt4 key购买 nike

我需要将动态生成的 html 表格转换为 pdf 格式并能够打印它。我需要它在 angular2 和 Typescript 中完成。

最佳答案

JSPDF 适用于 angular 2。您需要从 dt~ 下载定义。将库导入为:

import * as jsPDF from "jspdf";
.
.
.

let doc = new jsPDF();

// Add a title to your PDF
doc.setFontSize(30);
doc.text(12, 10, "Your Title");

// Create your table here (The dynamic table needs to be converted to canvas).
let element = <HTMLScriptElement>document.getElementsByClassName("pvtTable")[0];
html2canvas(element)
.then((canvas: any) => {
doc.addImage(canvas.toDataURL("image/jpeg"), "JPEG", 0, 50, doc.internal.pageSize.width, element.offsetHeight / 5 );
doc.save(`Report-${Date.now()}.pdf`);
})

在您的 system.js 中,在 map 部分添加以下行:

"jspdf": "<myLibs>/jspdf.js",

关于angular - 如何在angular2中将HTML转换为pdf?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42900319/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com