如何使用html2pdf打印html页面
我正在使用 html2pdf
库来从 html 文件生成 pdf。
我不知道如何检查宽度安排。
我从 source forge 那里得到了这个库。如果有人有关于 html2pdf 的想法或手册?
I am using html2pdf
library in order to generate pdf from html file.
I don't know how to check out width arrangements.
I had this library from source forge. If anyone has idea about it or manual about html2pdf
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你问的是如何更改输出的PDF文件的页面宽度。答案是在调用 AddPage() 之前更改设置中的宽度。 这里是如何执行此操作的示例:
这里是您需要的设置:
基本上,它看起来像这样:
如果我的代码正确,将输出一个名为 my.pdf 的 PDF,该 PDF 格式为纵向模式下的合法尺寸页面。
I think what you are asking is how to change the page width of the outputted PDF file. The answer is to change the width in the settings before you call AddPage(). Here is an example of how to do so:
Here are the settings you will need:
Basically, it would look something like this:
This, if I am getting the code right, would output a PDF called my.pdf that is formatted as a legal-size page in portrait mode.