码迷,mamicode.com
首页 > 其他好文 > 详细

ReportLab for PDF

时间:2017-09-12 00:04:03      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:rtl   color   col   from   report   port   span   div   wpa   

Install ReportLab

  方法一:

  python pip install reporlab 

  方法二:

        https://pypi.python.org/pypi/reportlab 去下载python对应版本的reoplab文件

  python3 -m pip install D:/*.whl 

Example:

from reportlab.pdfgen import canvas


def hello(c):
    c.setFont("Times-Roman", 20)
    string = r"Hello World!"
    c.drawString(50, 800, string)

pdf = canvas.Canvas("hello.pdf")
hello(pdf)
pdf.showPage()
pdf.save()

 

ReportLab for PDF

标签:rtl   color   col   from   report   port   span   div   wpa   

原文地址:http://www.cnblogs.com/ystwyfe/p/7507935.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!