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

 打开文件生成成功

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM