欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【Python】Python将HTML转成图片、PDF

程序员文章站 2022-04-19 17:37:31
...

一、下载

1、python的imgkit、pdfkit库

pip install imgkit
pip install pdfkit

2、wkhtmltopdf工具包

下载地址:https://wkhtmltopdf.org/downloads.html ,64位windows的话可以下载红框标出的版本

【Python】Python将HTML转成图片、PDF

这个工具包有两个程序,分别用来转图片和pdf:

【Python】Python将HTML转成图片、PDF

 

二、使用

1、转为图片

import imgkit

path_wkimg = r'D:\DevelopSoftware\wkhtmltopdf\bin\wkhtmltoimage.exe'  # 工具路径
cfg = imgkit.config(wkhtmltoimage=path_wkimg)
# 1、将html文件转为图片
imgkit.from_file(r'./helloworld.html', 'helloworld.jpg', config=cfg)
# 2、从url获取html,再转为图片
imgkit.from_url('https://httpbin.org/ip', 'ip.jpg', config=cfg)
# 3、将字符串转为图片
imgkit.from_string('Hello!','hello.jpg', config=cfg)

2、转为pdf

import pdfkit

path_wkpdf = r'D:\DevelopSoftware\wkhtmltopdf\bin\wkhtmltopdf.exe'  # 工具路径
cfg = pdfkit.configuration(wkhtmltopdf=path_wkpdf)

# 1、将html文件转为pdf
pdfkit.from_file(r'./helloworld.html', 'helloworld.pdf', configuration=cfg)
# 传入列表
pdfkit.from_file([r'./helloworld.html', r'./111.html', r'./222.html'], 'helloworld.pdf', configuration=cfg)

# 2、从url获取html,再转为pdf
pdfkit.from_url('https://httpbin.org/ip', 'ip.pdf', configuration=cfg)
# 传入列表
pdfkit.from_url(['https://httpbin.org/ip','https://httpbin.org/ip'], 'ip.pdf', configuration=cfg)

# 3、将字符串转为pdf
pdfkit.from_string('Hello!','hello.pdf', configuration=cfg)