我正在使用wkhtmltopdf
在文件系统上创建 pdf 文档。当我插入这样的参数时,PDF 生成良好:
psi.Arguments = "- --footer-html "http://localhost/pdf/footerpage.html" --footer-right "Page [page] of [toPage]" "C:\PDF\pdf.pdf""
问题是页脚包含不适合的图像。当我尝试像这样在底部添加边距时:
psi.Arguments = "- --margin-bottom 30 --footer-html "http://localhost/pdf/footerpage.html" --footer-right "Page [page] of [toPage]" "C:\PDF\pdf.pdf""
pdf无法生成。错误:“--margin-bottom specified in wrong location” 我在 wiki https://code.google.com/p/wkhtmltopdf/issues/detail?id=957上找到了这个,但它没有帮助。
有任何想法吗?
谢谢