wkhtmltopdf错误:在错误的位置指定

时间:2016-12-07 09:42:54

标签: wkhtmltopdf

这是我的shell脚本的一部分,其中$ {1}是'input.html'而$ {2}是'output.pdf':

.nav li {
    list-style-type: none;
    padding 0px;
    margin 0px;
    float: left;
}

.nav li a {
    text-decoration: none;
    display: block;
    padding: 0px 15px;
    line-height: 25px;
}

当我运行上述内容时,出现以下错误:

wkhtmltopdf "${1}" "${2}" --page-size letter --dpi 150 --margin-top 0.2in --margin-bottom 0.2in --margin-left 0.2in --margin-right 0.2in

我的wkhtmltopdf版本:

--page-size specified in incorrect location

1 个答案:

答案 0 :(得分:2)

将其更改为:

wkhtmltopdf --page-size letter --dpi 150 --margin-top 0.2in --margin-bottom 0.2in --margin-left 0.2in --margin-right 0.2in "${1}" "${2}"

并且有效。