码迷,mamicode.com
首页 > 编程语言 > 详细

Python之Word转PDF

时间:2020-05-07 19:42:19      阅读:410      评论:0      收藏:0      [点我收藏+]

标签:form   ati   export   win   cli   red   read   dispatch   const   

#coding=utf-8
from win32com.client import gencache
from win32com.client import constants, gencache
def createPdf(wordPath, pdfPath):
"""
word转pdf
:param wordPath: word文件路径
:param pdfPath: 生成pdf文件路径
"""
word = gencache.EnsureDispatch(‘Word.Application‘)
doc = word.Documents.Open(wordPath, ReadOnly=1)
doc.ExportAsFixedFormat(pdfPath,
constants.wdExportFormatPDF,
Item=constants.wdExportDocumentWithMarkup,
CreateBookmarks=constants.wdExportCreateHeadingBookmarks)
word.Quit(constants.wdDoNotSaveChanges)

Python之Word转PDF

标签:form   ati   export   win   cli   red   read   dispatch   const   

原文地址:https://www.cnblogs.com/yp19970/p/12844910.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!