Python之Word转PDF

Posted 鸟-叔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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)

以上是关于Python之Word转PDF的主要内容,如果未能解决你的问题,请参考以下文章

Python之Word转PDF

Python实现pdf转word

4办公自动化Python实现Word转PDF

python pdf转word

python pdf转word

python pdf转word