Python之Word转PDF

2021-01-27 13:15

阅读:685

标签: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

上一篇:Java再谈_变量

下一篇:Numpy数组排序


评论


亲,登录后才可以留言!