如何在Python中没有reportlab的情况下将文本文件转换为pdf文件?
我在使用 reportlab 和 py2exe 时遇到问题。它在 python 上工作正常,但在运行 py2exe 编译后的 exe 文件时,reportlab 模块上出现很多错误。你能建议一个库或代码以Python的方式将文本文件(带表格)转换为pdf格式而不使用reportlab。谢谢。
I have a problem when using reportlab and py2exe. It works normal on python but much error on reportlab modules when running the exe file after compiled by py2exe. Can you suggest a library or code in python way to convert a text files (with tables) to pdf format without using reportlab. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我过去使用过 pyPdf ,这对于快速而肮脏的解决方案非常有用,尽管我在使用它之前会犹豫对于大型项目。
I used pyPdf in the past, which is quite good for quick and dirty solutions, though I would hesitate before using it for large projects.