首页 > 其他 > 详细

word转PDF

时间:2020-02-21 21:46:33      阅读:95      评论:0      收藏:0      [点我收藏+]

from win32com.client import Dispatch,constants,gencache

docx_path = (r‘C:/Users/13375/Desktop/python/长恨歌.docx‘)
pdf_path = (r‘C:/Users/13375/Desktop/python/长恨歌_pdf.pdf‘)

gencache.EnsureModule(‘{00020905-0000-0000-C000-000000000046}‘,0,8,4)

wd = Dispatch("Word.Application")

doc = wd.Documents.Open(docx_path,ReadOnly=1)
doc.ExportAsFixedFormat(pdf_path,constants.wdExportFormatPDF,Item=constants.wdExportDocumentWithMarkup,
                       CreateBookmarks = constants.wdExportCreateHeadingBookmarks)

wd.Quit(constants.wdDoNotSaveChanges)

word转PDF

原文:https://www.cnblogs.com/tomhu/p/12342951.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!