python生成pdf文件

使用reportlab可以很方便的生成pdf文件。reportlab的官网:

http://www.reportlab.com/software/opensource/

假设你在ubuntu下面你可以直接使用安装reportlab:

sudo apt-get install python-reportlab

接下来就直接使用reportlab创建一个helloworld的pdf文件:

>>> from reportlab.pdfgen import canvas
>>> p = canvas.Canvas( ‘hello.pdf’ )
>>> p.drawString( 100, 100, ‘hello world ‘)
>>> p.showPage()
>>> p.save()
>>> exit()

就上面这么简单的几行hello.pdf文件就生成了。

代码我想就不用解释了吧,看字面意思就可以看懂。

版权所有,禁止转载. 如需转载,请先征得博主的同意,并且表明文章出处,否则按侵权处理.

    分享到:

留言

你的邮箱是保密的 必填的信息用*表示