是否有使用xhtml2pdf python模块的当前教程或howto文档?

时间:2013-04-12 20:05:33

标签: python xhtml2pdf

我似乎找不到这个模块的工作教程或文档。一个人存在吗?


此处的“待完成”部分: https://github.com/chrisglass/xhtml2pdf/blob/master/doc/usage.rst

是错误的,似乎不包含工作代码。更正后,此代码序列:

from xhtml2pdf import pisa as pisa
filename = u'test.pdf'
pdf = pisa.CreatePDF("Hello <strong>World</strong>",file(filename, "wb"))
pisa.startViewer(filename)

生成一个空的test.pdf文件(好吧,不完全是空的,这是一个没有内容的pdf文件)

1 个答案:

答案 0 :(得分:1)

由于它基于ReportLab,因此您可能find their tutorials有用。

(我不使用任何一个包)。