我有一个项目需要完成,这涉及到一些wkhtmltopdf故障排除。 到目前为止,我已经能够在创建我的pdf时使用“--header-html”和“--footer-html”命令动态添加页眉和页脚。我需要帮助解决的问题就像我的标题状态。我需要弄清楚在调用--header-html命令时如何调用--header-spacing。
截至目前,我已尝试以下命令:
wkhtmltopdf -O landscape -L 0mm -R 0mm --header-spacing 5mm <target-page-url> --header-html "<target-header-location>" --footer-html "<target-header-location>" sample.pdf
wkhtmltopdf -O landscape -L 0mm -R 0mm <target-page-url> --header-html --header-spacing 5mm "<target-header-location>" --footer-html "<target-header-location>" sample.pdf
这两个命令都会导致错误。
错误:加载页面http失败:(有时它只会忽略此错误,并且--load-error-handling忽略)
如果您知道如何做到这一点,请告诉我。
提前致谢。
答案 0 :(得分:1)
我无法复制您的错误消息,所以我不确定这一点,但我认为我的工作正常。尝试像
这样的命令 wkhtmltopdf -O landscape -L 0 -R 0 --footer-html footer.html --header-html header.html --header-spacing 5
www.google.com samplex.pdf
这样的事情对你有用吗? wkhtmltopdf对于参数的顺序非常讲究,我认为在这种情况下它有点困惑。尝试使用不同的标题间距值(如1,5和10)来查看其实际效果。