手机
当前位置:查字典教程网 >脚本专栏 >python >Python实现将DOC文档转换为PDF的方法
Python实现将DOC文档转换为PDF的方法
摘要:本文实例讲述了Python实现将DOC文档转换为PDF的方法。分享给大家供大家参考。具体实现方法如下:importsys,osfromwin...

本文实例讲述了Python实现将DOC文档转换为PDF的方法。分享给大家供大家参考。具体实现方法如下:

import sys, os from win32com.client import Dispatch, constants, gencache def usage(): sys.stderr.write ("doc2pdf.py input [output]") sys.exit(2) def doc2pdf(input, output): w = Dispatch("Word.Application") try: doc = w.Documents.Open(input, ReadOnly = 1) doc.ExportAsFixedFormat(output, constants.wdExportFormatPDF, Item = constants.wdExportDocumentWithMarkup, CreateBookmarks = constants.wdExportCreateHeadingBookmarks) return 0 except: return 1 finally: w.Quit(constants.wdDoNotSaveChanges) # Generate all the support we can. def GenerateSupport(): # enable python COM support for Word 2007 # this is generated by: makepy.py -i "Microsoft Word 12.0 Object Library" gencache.EnsureModule('{00020905-0000-0000-C000-000000000046}', 0, 8, 4) def main(): if (len(sys.argv) == 2): input = sys.argv[1] output = os.path.splitext(input)[0]+'.pdf' elif (len(sys.argv) == 3): input = sys.argv[1] output = sys.argv[2] else: usage() if (not os.path.isabs(input)): input = os.path.abspath(input) if (not os.path.isabs(output)): output = os.path.abspath(output) try: GenerateSupport() rc = doc2pdf(input, output) return rc except: return -1 if __name__=='__main__': rc = main() if rc: sys.exit(rc) sys.exit(0)

希望本文所述对大家的Python程序设计有所帮助。

【Python实现将DOC文档转换为PDF的方法】相关文章:

Python操作列表的常用方法分享

python实现dnspod自动更新dns解析的方法

Python实现多线程下载文件的代码实例

python正则表达式修复网站文章字体不统一的解决方法

python合并文本文件示例

python将人民币转换大写的脚本代码

Python实例之wxpython中Frame使用方法

Python实现的几个常用排序算法实例

用python实现批量重命名文件的代码

用python实现的去除win下文本文件头部BOM的代码

精品推荐
分类导航