写一段word转PDF的python代码
时间: 2024-06-06 14:10:42 浏览: 138
python word转pdf代码实例
import os
import comtypes.client
def word_to_pdf(file_path):
# 创建word应用程序
word = comtypes.client.CreateObject('Word.Application')
# 打开word文件
doc = word.Documents.Open(file_path)
# 生成pdf文件的路径
pdf_path = os.path.splitext(file_path)[0] + '.pdf'
# 将word文件保存为pdf
doc.SaveAs(pdf_path, FileFormat=17)
# 关闭word文件
doc.Close()
# 关闭word应用程序
word.Quit()
# 示例
word_to_pdf('C:/Users/username/Documents/example.docx')
阅读全文