ReportLab for PDF

Posted ystwyfe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ReportLab for PDF相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

Python Reportlab PDF - 在页面上居中文本

Python:如何使 Reportlab 在 PDF 输出中移至下一页

技术博客——PyPDF2 & Reportlab 使用

技术博客——PyPDF2 & Reportlab 使用

reportlab生成pdf

使用 Django 和 Reportlab 从 HTML 生成 PDF