我尝试使用wkhtmltopdf将文本插入页脚。
wkhtmltopdf ../input.html ../output.pdf --footer-center="My Text"
但它只是给了我错误
Unknown long argument --footer-center=My Text
我尝试了很多方法
wkhtmltopdf ../input.html ../output.pdf --footer-center=My Text
wkhtmltopdf --footer-center="My Text" ../input.html ../output.pdf
wkhtmltopdf ../input.html --footer-center="My Text" ../output.pdf
但所有结果都是
Unknown long argument --footer-center=My Text
我正在使用wkhtmltopdf 0.12.1 (with patched qt)
man wkhtmltopdf
描述了--footer-center
参数
当然,input.html已存在于父目录中,如果我不添加--footer-center参数,一切都很完美
答案 0 :(得分:3)
参数值必须由=
(空格)分隔,而不是。
wkhtmltopdf --footer-center "My Text" ../input.html ../output.pdf
并且有多个
wkhtmltopdf --footer-center "My Text" --footer-left "Left content" ../input.html ../output.pdf