python生成pdf报告、python实现html转换为pdf报…
2019-04-26 08:19:39来源:博客园 阅读 ()
1、先说下html转换为pdf:其实支持直接生成,有三个函数pdfkit.f
安装python包:pip Install pdfkit
系统安装wkhtmltopdf:参考 https://github.com/JazzCore/python-pdfkit/wiki/Installing-wkhtmltopdf
mac下的wkhtmltopdf: brew install Caskroom/cask/wkhtmltopdf
import pdfkit pdfkit.from_url('http://google.com','out.pdf') pdfkit.from_file('test.html','out.pdf') pdfkit.from_string('Hello!','out.pdf')
传递一个url或者文件名列表:
pdfkit.from_url(['google.com','yandex.ru','engadget.com'],'out.pdf')
pdfkit.from_file(['file1.html','file2.html'],'out.pdf')
传递一个打开的文件:
withopen('file.html')asf: pdfkit.from_file(f,'out.pdf')
如果你想对生成的PDF作进一步处理, 你可以将其读取到一个变量中: # 设置输出文件为False,将结果赋给一个变量pdf=pdfkit.from_url('http://google.com',False)
你可以制定所有的 wkhtmltopdf选项 . 你可以移除选项名字前面的 '--' .如果选项没有值, 使用None, Falseor*作为字典值:
options={ 'page-size':'Letter', 'margin-top':'0.75in', 'margin-right':'0.75in', 'margin-bottom':'0.75in', 'margin-left':'0.75in', 'encoding':"UTF-8", 'no-outline':None } pdfkit.from_url('http://google.com','out.pdf', options=options)
当你转换文件、或字符串的时候,你可以通过css选项指定扩展的 CSS 文件。
# 单个 CSS 文件
css='example.css'pdfkit.from_file('file.html', options=options, css=css)
# Multiple CSS
filescss=['example.css','example2.css'] pdfkit.from_file('file.html', options=options, css=css)
你也可以通过你的HTML中的meta tags传递任意选项:
body = """ <html> <head> <meta name="pdfkit-page-size" content="Legal"/> <meta name="pdfkit-orientation" content="Landscape"/> </head> Hello World! </html> """
pdfkit.from_string(body,'out.pdf')#with --page-size=Legal and --orientation=Landscape
2、再说reporatlab
安装:pip install reportlab
简单使用:
#!/usr/bin/python from reportlab.pdfgen import canvas def hello(): c = canvas.Canvas("helloworld.pdf") c.drawString(100,100,"Hello,World") c.showPage() c.save() hello()
#!/usr/bin/env python import subprocess import datetime from reportlab.pdfgen import canvas from reportlab.lib.units import inch def disk_report(): p = subprocess.Popen("df -h", shell=True, stdout=subprocess.PIPE) # print p.stdout.readlines() return p.stdout.readlines() def create_pdf(input, output="disk_report.pdf"): now = datetime.datetime.today() date = now.strftime("%h %d %Y %H:%M:%S") c = canvas.Canvas(output) textobject = c.beginText() textobject.setTextOrigin(inch, 11*inch) textobject.textLines('''Disk Capcity Report: %s''' %date) for line in input: textobject.textLine(line.strip()) c.drawText(textobject) c.showPage() c.save() report = disk_report() create_pdf(report)
参考:
1、https://github.com/twtrubiks/python-pdfkit-example
2、http://www.cnblogs.com/taceywong/p/5643978.html
3、https://bitbucket.org/rptlab/reportlab
4、http://www.reportlab.com/opensource/
5、http://www.reportlab.com/docs/reportlab-userguide.pdf
6、http://www.cnblogs.com/webRobot/p/6999665.html
原文链接:https://www.cnblogs.com/fuchen9527/p/10774861.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 【2020Python修炼记】前端开发之 网页设计超级酷炫小技巧 2020-05-14
- 【2020Python修炼记】前端开发之 CSS基础布局 2020-05-13
- 【2020Python修炼记】前端开发之 CSS基础和CSS选择器 2020-05-12
- 【2020Python修炼记】前端开发之 HTML常用标签汇总 2020-05-12
- 【2020Python修炼记】前端开发之 前端工具和HTML 2020-05-11
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash