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 - 在页面上居中文本