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