使用 wkhtmltopdf 将 html 转为 pdf
html 非常简单,只有一个图像和一个绝对定位的 div。 pdf 看起来不错,布局很完美,分辨率也很好,但多了一张空白页。
我尝试了这两个命令,得到了相同的结果:
wkhtmltopdf --page-width 11 --page-height 8.5 -O Landscape file.html file.pdf
wkhtmltopdf -s Letter -O Landscape file.html file.pdf
如何摆脱空白页?
The html is pretty simple with just an image and an absolutely positioned div.
The pdf looks good, the layout is perfect and the resolution too but there's one extra blank page.
I tried these two commands and I get the same result:
wkhtmltopdf --page-width 11 --page-height 8.5 -O Landscape file.html file.pdf
wkhtmltopdf -s Letter -O Landscape file.html file.pdf
How can I get rid of the blank page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我也通过在图像上使用
position:absolute
来修复它。z-index
值按预期工作。I fixed it by using
position: absolute
on the image too.z-index
values work as expected.再次检查你的CSS是否有额外的div设置了height属性。
Check once more your css for extra div which set the height property .
我遇到了同样的问题,并通过删除 div(主容器 div)样式上的样式“display:table”来修复它。
I had the same probleme and fixed it by removing the style "display:table" on the style of a div (the main container div).