Python开发的HTML/CSS转PDF的转换器:xhtml2pdf
jopen
10年前
Xhtml2pdf是一个用把HTML5和CSS 2.1(和一些CSS 3)转化成PDF,它纯粹由Python语言实现。这个工具的最大好处是熟悉HTML和CSS的用户可以快速生成PDF,不需要学习其他新技术。
在test/simple.py文件中有如何把xhtml2pdf库整合到Python程序中的例子。
特性:
- 将 HTML 和 CSS 输入转成 PDF 文件
- 采用纯Python开发,因此其平台独立
- 支持文档细节如:columns, headers, footers, page numbers, custom Postscript and TrueType fonts, etc.
- 支持框架如 Django, Turbogears, CherryPy, Pylons, WSGI
- 能够与Python程序方便集成
- Also usable as stand alone command line tool for Windows, MacOS X and Linux (binaries not available)
其它相似工具:
- weasyprint - Also written in Python, BSD License
- fop - Apache Formatting Objects Processor
- wkhtmltopdf - Based on WebKit
- pantomjs - Based on WebKit too, can be controlled using Javascript
官方网站:http://www.xhtml2pdf.com/
github主页:https://github.com/chrisglass/xhtml2pdf