从html文件创建pdf文件

时间:2014-09-04 08:49:47

标签: bash webpage wkhtmltopdf

我有一个HTML脚本

script.html

如何使用wkhtmltopdf创建一个pdf文件? 我应该在使用wkhtmltopdf之前从html文件中生成一个网页吗?

2 个答案:

答案 0 :(得分:2)

你应该阅读文档。 在命令行界面中,您应该输入命令:

wkhtmltopdf script.html my.pdf

Link to documentation

答案 1 :(得分:1)

Should I generate a webpage out of the html file before using wkhtmltopdf ??

首先,您必须以html格式下载网页。为此,您可以使用wget命令。

例如

wget -p http://your/site/yourpage.html

现在wkhtmltopdf语法是

 wkhtmltopdf [html file] [pdf file]

使用上述语法,您可以通过

将上述html文件转换为pdf
wkhtmltopdf yourpage.html yourpage.pdf