我有一个需要完成的项目,这涉及到一些 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 ignore 忽略此错误)
如果您知道如何完成此操作,请告诉我。
提前致谢。