使用python生成pdf
下載
1) pip install pdfkit https://pypi.org/project/pdfkit/
2) 選擇合適環境(比如我電腦是win64) https://wkhtmltopdf.org/downloads.html
3)配置環境變量 或者在代碼中指定
使用
import pdfkit content = '你好啊,世界~' + '<br>' + 'hello,python~' html = '<html><head><meta charset="UTF-8"></head>' \ '<body><div align="center"><p>%s</p></div></body></html>'%content config=pdfkit.configuration(wkhtmltopdf=r"D:xxx\xxx\wkhtmltopdf\bin\wkhtmltopdf.exe") pdfkit.from_url('http://www.baidu.com', 'url_test.pdf',configuration=config) #通過url地址生成 pdfkit.from_string(html,'string_test.pdf',configuration=config) #通過字符串生成 pdfkit.from_file('xxx.html','file_test.pdf',configuration=config) #通過文件生成
打開文件生成成功