博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python实现doc转化pdf
阅读量:5074 次
发布时间:2019-06-12

本文共 1944 字,大约阅读时间需要 6 分钟。

Python实现doc转化pdf

python源码实现doc转化pdf

#-*- coding:utf-8 -*-# doc2pdf.py: python script to convert doc to pdf with bookmarks!# Requires Office 2007 SP2# Requires python for win32 extensionimport sys, osfrom win32com.client import Dispatch, constants, gencachedef 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():    print(len(sys.argv))    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:        input = u'BA06007013.docx'#word文档的名称        output = u'BA06007013.pdf'#pdf文档的名称    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 -1if __name__=='__main__':    print("hello")    rc = main()    if rc:        sys.exit(rc)    sys.exit(0)

php调用py程序

项目查重检测系统
项目查重检测系统

  

转载于:https://www.cnblogs.com/baiboy/p/7251484.html

你可能感兴趣的文章
mysql重置密码
查看>>
jQuery轮 播的封装
查看>>
一天一道算法题--5.30---递归
查看>>
JS取得绝对路径
查看>>
排球积分程序(三)——模型类的设计
查看>>
python numpy sum函数用法
查看>>
php变量什么情况下加大括号{}
查看>>
linux程序设计---序
查看>>
【字符串入门专题1】hdu3613 【一个悲伤的exkmp】
查看>>
C# Linq获取两个List或数组的差集交集
查看>>
HDU 4635 Strongly connected
查看>>
ASP.NET/C#获取文章中图片的地址
查看>>
Spring MVC 入门(二)
查看>>
Java处理多人同时读写文件的文件锁处理
查看>>
格式化输出数字和时间
查看>>
页面中公用的全选按钮,单选按钮组件的编写
查看>>
java笔记--用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
查看>>
SelectSort 选择排序
查看>>
BZOJ 1047 HAOI2007 理想的正方形 单调队列
查看>>
各种语言推断是否是手机设备
查看>>