如何使用 TCPDF 将 HTML 转换为 PDF?
我将如何编写一个 div (例如, style="postion:absolute; width: 200px; height: 100px; border:olid 1px #000;"
)并在其中输入一些文本?
How would I write a div (for example, style="postion:absolute; width: 200px; height: 100px; border: solid 1px #000;"
) and input some text into it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
利用 TCPDF 库的 writeHTML 函数。
Make use of the writeHTML function of the TCPDF library.
下面的代码片段仅显示了生成 div 的相关代码,并假设您已经初始化了 pdf 文档并使用 $pdf 作为句柄。此外,确切的尺寸(阅读:像素位置/大小)不会直接转换为 tcpdf,因此您可能需要稍微尝试一下。请参阅此处的 TCPDF writeHTMLCell 文档。
The snippet below only shows the relevant code to generate the div and assumes you initialized the pdf document already and are using $pdf as the handle. Also the exact dimensions (read: pixel positions/sizes) will not translate directly into tcpdf, so you might need to play around w/it a bit. See TCPDF writeHTMLCell documentation here.