Python使用reportlab将目录下所有的文本文件打印成pdf的方法,
Python使用reportlab将目录下所有的文本文件打印成pdf的方法,
本文实例讲述了Python使用reportlab将目录下所有的文本文件打印成pdf的方法。分享给大家供大家参考。具体实现方法如下:
# -*- coding: utf8 -*- #~ #---------------------------------------------------------------------- import wlab #pip install wlab import reportlab.pdfbase.ttfonts #reportlab.pdfbase.pdfmetrics.registerFont(reportlab.pdfbase.ttfonts.TTFont('song', '/usr/share/fonts/cn/msjh.ttf')) #import reportlab.lib.fonts # from reportlab.pdfgen import canvas from reportlab.lib.units import inch # def file2pdf(FileName): fpi=FileName.find('.') if (fpi>0): outputfn=FileName[0:fpi]+'.pdf' else: outputfn=FileName+'.pdf' c = canvas.Canvas(outputfn) #c.setFont('song',10) textobject = c.beginText() textobject.setTextOrigin(inch,11*inch) file=open(FileName) n=0 for line in file: n=n+1 if(n<10): nstr='0'+str(n) else: nstr=str(n) line=nstr+': '+line.replace(' ',' ') textobject.textLine(line.rstrip()) c.drawText(textobject) c.showPage() c.save() # FileList=wlab.GetFileList('.',FlagStr=['.txt']) # for FileName in FileList: file2pdf(FileName)
希望本文所述对大家的Python程序设计有所帮助。
相关内容
- python获取指定目录下所有文件名列表的方法,
- Python使用matplotlib实现在坐标系中画一个矩形的方法,
- Python使用shelve模块实现简单数据存储的方法,pythonshe
- python使用wxpython开发简单记事本的方法,pythonwxpython
- python任务调度实例分析,python任务调度
- Python中处理字符串之islower()方法的使用简介,pythonisl
- python绘图方法实例入门,python绘图实例
- Python中isnumeric()方法的使用简介,pythonisnumeric
- python使用in操作符时元组和数组的区别分析,python操作
- Python处理字符串之isspace()方法的使用,pythonisspace
评论关闭