python生成pdf

使用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)  #通过文件生成

 打开文件生成成功

 

posted @ 2019-05-17 14:34  RainBol  阅读(5809)  评论(0编辑  收藏  举报
Live2D