使用 wkhtmltopdf 将 html 转为 pdf

发布于 2024-10-27 13:12:53 字数 272 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

好多鱼好多余 2024-11-03 13:12:53

我也通过在图像上使用 position:absolute 来修复它。 z-index 值按预期工作。

I fixed it by using position: absolute on the image too. z-index values work as expected.

大姐,你呐 2024-11-03 13:12:53

再次检查你的CSS是否有额外的div设置了height属性。

Check once more your css for extra div which set the height property .

孤君无依 2024-11-03 13:12:53

我遇到了同样的问题,并通过删除 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文