8

谁能告诉我如何包含用户样式表 ind wkhtlmtopdf v. 0.10?

我指的是本地文件,但这不会影响我的 Pdf。

switches += "--user-style-sheet \User\...\style.css "
4

3 回答 3

5

在你的交换机上使用“真实”的 URL 语法怎么样?就像是

switches += "--user-style-sheet file:///User/.../style.css"
于 2012-04-26T13:55:39.193 回答
4

使用该参数的另一个选项是在 PDF 转换发生之前以编程方式注入样式表。可能是通过使用一个 URL 参数来识别页面是否被提供给 wkhtmltopdf,或者通过下载页面,注入 CSS 引用,然后为 wkhtmltopdf 反刍页面。

于 2012-07-12T07:41:08.500 回答
3

在终端

wkhtmltopdf -V
wkhtmltopdf 0.12.2.4

命令

 wkhtmltopdf --user-style-sheet yourcssfile.css yourhtmlfile.html outputfile.pdf
于 2018-02-08T10:14:49.160 回答