gpt4 book ai didi

html - 如何使用 Angular View 中的内容创建 PDF?

转载 作者:搜寻专家 更新时间:2023-10-31 19:29:05 24 4
gpt4 key购买 nike

我有一个使用 ngx-charts 的 Angular 应用程序渲染一些图形,例如:

Demo chart

现在我想将此 View 及其图表导出到 PDF 文件,但目前我不确定如何解决这个问题。

有没有办法将此 View 的 HTML 导出为 PDF,或者是否有其他方法可以根据 View 生成 PDF 文件?

其他问题:假设我必须在没有用户交互的情况下渲染 View 并生成 PDF 后端,您将如何处理?

最佳答案

到目前为止,您最有可能使用此库:jsPDF

或者你可以尝试从这段代码中做一些事情:

print(){  
var canvas = document.getElementById(id) as HTMLCanvasElement;
var dataURL = canvas.toDataURL();
let popupWin,printContents;
popupWin = window.open('', '_blank', 'top=0,left=0,height=100%,width=auto');
popupWin.document.open();
popupWin.document.write(`
<html>
<head>
<title>${title}</title>
<style>
</style>
</head>
<body width="100%" height"="100%" onload="window.print();window.close()"><img src="${dataURL}" width="600px" height="auto"></body>
</html>`
);
popupWin.document.close();
}

简而言之,创建一个 Canvas 并将其打印出来(并另存为 pdf)

关于html - 如何使用 Angular View 中的内容创建 PDF?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58505417/

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