其他分享
首页 > 其他分享> > wkhtmltopdf导出pdf的安装与使用

wkhtmltopdf导出pdf的安装与使用

作者:互联网

下载安装对应系统的wkhtmltopdf安装包,然后以命令形式执行

安装

1.下载安装包

我这里分别下载了window和centos的两个安装包,顺便提供对应阿里云盘方便下载
官网:wkhtmltopdf,阿里云盘:wkhtmltopdf
image

2.安装wkhtmltopdf

2.1 Windows

1.直接点击安装包安装,需记录安装路径
2.设置环境变量(win10)

3.测试

wkhtmltopdf https://www.baidu.com/ D:\test.pdf

2.2 Linux

1.将rpm安装包上传到系统中,并切换到安装包路径
2.执行安装

rpm -ivh wkhtmltox-0.12.6-1.centos7.x86_64.rpm

3.测试

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

image
image

使用

1.中文乱码解决

<meta http-equiv="content-type" content="text/html;charset=utf-8">

2.页眉图片添加

--header-html header.html
<!DOCTYPE html>
wkhtmltopdf --margin-bottom 10 --header-html D:/header.html --footer-html D:/footer.html --footer-left 测试 --footer-right [page]/[topage] --footer-line --footer-spacing 3

整体使用语句示例

wkhtmltopdf --margin-bottom 10 --header-html D:/header.html --footer-html D:/footer.html --footer-left 测试 --footer-right [page]/[topage] --footer-line --footer-spacing 3 cover D:/cover.html toc --toc-header-text 目录 D:/test.html D:/test.pdf

官方使用文档说明

标签:footer,--,wkhtmltopdf,导出,header,html,pdf,安装包
来源: https://www.cnblogs.com/TwoBamboo/p/16672385.html