目录
python包-pdfkit 将HTML转换为PDF什么是pdfkit安装使用将url生成pdf文件字符串生成pdf【pdfkit.from_string()函数】报错OSError: No wkhtmltopdf executable found报错python包-pdfkit 将HTML转换为PDF
什么是pdfkit
pdfkit,把HTML+CSS格式的文件转换成PDF格式文档的一种工具。它就是html转成pdf工具包wkhtmltopdf的Python封装。所以,必须手动安装wkhtmltopdf。
安装
首先需要安装 pdfkit 库,使用 pip install pdfkit 命令就好了。
还需要安装 wkhtmltopdf 工具,本质就是利用这个工具来进行转换,pdfkit 库就是作为接口来调用该工具。
python版本 3.x,在命令行输入:
$sudo apt-get install wkhtmltopdf
工具下载地址:
wkhtmltopdf 官网:https://wkhtmltopdf.org/downloads.html
Ubuntu系统可以直接使用以下命令安装:
$sudo yum intsall wkhtmltopdf
CentOS系统可以直接使用以下命令安装:
$sudo yum intsall wkhtmltopdf
使用
将url生成pdf文件
不指定wkhtmltopdf,会从系统的默认执行路径下找 wkhtmltopdf
import pdfkit """将url生成pdf文件""" def url_to_pdf(url, to_file): pdfkit.from_url(url, to_file,verbose=True) url_to_pdf("http://www.baidu.com","out_3.pdf")
指定 wkhtmltopdf 的位置:
import pdfkit """将url生成pdf文件""" def url_to_pdf(url, to_file): config = pdfkit.configuration(wkhtmltopdf="/usr/local/bin/wkhtmltopdf") pdfkit.from_url(url, to_file,configuration=config,verbose=True) url_to_pdf("http://www.baidu.com","out_3.pdf")
字符串生成pdf【pdfkit.from_string()函数】
# 导入库 import pdfkit """将字符串生成pdf文件""" def str_to_pdf(string, to_file): # 将wkhtmltopdf.exe程序绝对路径传入config对象 path_wkthmltopdf = r"C:\\Program Files\\wkhtmltopdf\\bin\\wkhtmltopdf.exe" config = pdfkit.configuration(wkhtmltopdf=path_wkthmltopdf) # 生成pdf文件,to_file为文件路径 pdfkit.from_string(string, to_file, configuration=config) print("完成") str_to_pdf("This is test!","out_3.pdf")
报错
报错OSError: No wkhtmltopdf executable found
在使用pdfkit.from_string或者pdfkit.from_file或者pdfkit.from_url将字符串、文件或者网页内容转化为pdf时,报错:
OSError: No wkhtmltopdf executable found
原因很明显,就是没找到可执行的wkhtmltopdf文件,也就是未找到wkhtmltopdf.exe文件。
python的pdfkit扩展包使用时需要基于wkhtmltopdf.exe这个可执行文件才可运行,因此需要先安装wkhtmltopdf。
对于windows系统,可以在(https://wkhtmltopdf.org/downloads.html)下载安装,然后将该程序的执行文件路径添加到环境变量中(这样即可直接用pdfkit扩展包,否则需要在使用pdfkit时,指明该程序的路径)
Ubuntu系统可以直接使用以下命令安装:
$sudo apt-get install wkhtmltopdf
CentOS系统可以直接使用以下命令安装:
$sudo yum intsall wkhtmltopdf
到此这篇关于python包pdfkit(wkhtmltopdf)将HTML转换为PDF的文章就介绍到这了,更多相关pythonpdfkit将HTML转换为PDF内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
上一篇:python绘制分组对比柱状图
X 关闭
X 关闭
- 15G资费不大降!三大运营商谁提供的5G网速最快?中国信通院给出答案
- 2联想拯救者Y70发布最新预告:售价2970元起 迄今最便宜的骁龙8+旗舰
- 3亚马逊开始大规模推广掌纹支付技术 顾客可使用“挥手付”结账
- 4现代和起亚上半年出口20万辆新能源汽车同比增长30.6%
- 5如何让居民5分钟使用到各种设施?沙特“线性城市”来了
- 6AMD实现连续8个季度的增长 季度营收首次突破60亿美元利润更是翻倍
- 7转转集团发布2022年二季度手机行情报告:二手市场“飘香”
- 8充电宝100Wh等于多少毫安?铁路旅客禁止、限制携带和托运物品目录
- 9好消息!京东与腾讯续签三年战略合作协议 加强技术创新与供应链服务
- 10名创优品拟通过香港IPO全球发售4100万股 全球发售所得款项有什么用处?