wkhtmltopdf error: specified in incorrect location
wkhtmltopdf error: specified in incorrect location
这是我的 shell 脚本的一部分,其中 ${1} 是 'input.html',${2} 是 'output.pdf':
wkhtmltopdf "" "" --page-size letter --dpi 150 --margin-top 0.2in --margin-bottom 0.2in --margin-left 0.2in --margin-right 0.2in
当我运行上面的时候,我得到了以下错误:
--page-size specified in incorrect location
我的 wkhtmltopdf 版本:
$ wkhtmltopdf --version
wkhtmltopdf 0.12.0 final
更改为:
wkhtmltopdf --page-size letter --dpi 150 --margin-top 0.2in --margin-bottom 0.2in --margin-left 0.2in --margin-right 0.2in "" ""
成功了。
这是我的 shell 脚本的一部分,其中 ${1} 是 'input.html',${2} 是 'output.pdf':
wkhtmltopdf "" "" --page-size letter --dpi 150 --margin-top 0.2in --margin-bottom 0.2in --margin-left 0.2in --margin-right 0.2in
当我运行上面的时候,我得到了以下错误:
--page-size specified in incorrect location
我的 wkhtmltopdf 版本:
$ wkhtmltopdf --version
wkhtmltopdf 0.12.0 final
更改为:
wkhtmltopdf --page-size letter --dpi 150 --margin-top 0.2in --margin-bottom 0.2in --margin-left 0.2in --margin-right 0.2in "" ""
成功了。