+
95
-

回答

1、安装 xvfb 重命名 wkhtmltopdf

yum install xorg-x11-server-Xvfb
mv /usr/bin/wkhtmltopdf /usr/bin/wkhtmltopdf_bin

2、新建/usr/bin/wkhtmltopdf.sh 文件

#! /usr/bin/bash
xvfb-run -a --server-args="-screen 0, 1024x768x24" /usr/bin/wkhtmltopdf_bin $*


3、赋予权限创建链接

chmod a+x /usr/bin/wkhtmltopdf.sh
ln -s /usr/bin/wkhtmltopdf.sh /usr/bin/wkhtmltopdf

4、测试效果

wkhtmltopdf https://www.baidu.com baidu.pdf

网友回复

我知道答案,我要回答