Centos 7 安装 Wkhtmltopdf

前端之家收集整理的这篇文章主要介绍了Centos 7 安装 Wkhtmltopdf前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

可使用yum安装:

yum install wkhtmltopdf

不过由于CentOS的yum库里的wkhtmltopdf版本过旧,而新版的不再依赖X server,会导致wkhtmltopdf: cannot connect to X server 这样的报错。


卸载后使用从官网下载预编译版安装:

wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
tar xvfJ wkhtmltox-0.12.3_linux-generic-amd64.tar.xz
cd wkhtmltox/bin
sudo mv ./wkhtmltopdf /usr/bin/wkhtmltopdf
sudo chmod +x /usr/bin/wkhtmltopdf

测试:

wkhtmltopdf http://www.baidu.com ./test.pdf

此时如果生成的字符都是方块,那么安装standard PostScript fonts:

yum install urw-fonts libXext openssl-devel

如果中文不显示,则将 windows下的字体,例如simsun.ttc ,或者msyh.ttf,或者msyhbd.ttf 复制到 linux系统 /usr/share/fonts 下。


参考:

https://blog.csdn.net/Mr_Zing/article/details/52833461

https://blog.csdn.net/laokaizzz/article/details/52804126

原文链接:https://www.f2er.com/centos/374229.html

猜你在找的CentOS相关文章