编程语言
首页 > 编程语言> > Python之Word转PDF

Python之Word转PDF

作者:互联网

#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)

标签:pdfPath,Word,Python,word,param,wordPath,import,PDF,constants
来源: https://www.cnblogs.com/yp19970/p/12844910.html