在日常工作中,我们经常需要将 PDF 文档转换为 Word 文件。幸运的是,Python 提供了很多强大的库,帮助我们实现这一功能。今天,我将与大家分享如何使用 wxPython
创建一个简单的图形用户界面(GUI)应用程序,结合 pdf2docx
库,实现将 PDF 转换为 Word 文档的功能。
C:\pythoncode\new\PDFConvertWord.py
项目概述
这个小工具的主要目的是通过一个简单的窗口,让用户选择一个 PDF 文件,然后点击“转换”按钮,程序会将 PDF 文件转换为 Word 格式并保存在相同目录下。我们将使用 wxPython
来创建图形界面,pdf2docx
来进行实际的 PDF 转换。
全部代码
python">word">import wx
word">import os
word">from pdf2docx word">import Converterword">class PDFConverterFrame(wx.Frame):word">def __init__(self):super().__init__(parent=None, title='PDF to Word Converter', size=(500, 200))self.pdf_path = None# Create main panelpanel = wx.Panel(self)# Create vertical box sizervbox = wx.BoxSizer(wx.VERTICAL)# Create file picker buttonself.file_picker = wx.FilePickerCtrl(panel, message="Choose a PDF file",wildcard="PDF files (*.pdf)|*.pdf",style=wx.FLP_USE_TEXTCTRL | wx.FLP_OPEN | wx.FLP_FILE_MUST_EXIST)vbox.Add(self.file_picker, 0, wx.ALL | wx.EXPAND, 5)# Create status textself.status_text = wx.StaticText(panel, label="Select a PDF file to convert")vbox.Add(self.status_text, 0, wx.ALL | wx.CENTER, 5)# Create convert buttonconvert_btn = wx.Button(panel, label='Convert to Word')convert_btn.Bind(wx.EVT_BUTTON, self.on_convert)vbox.Add(convert_btn, 0, wx.ALL | wx.CENTER, 5)# Set panel sizerpanel.SetSizer(vbox)# Center window on screenself.Centre()word">def on_convert(self, event):pdf_path = self.file_picker.GetPath()word">if word">not pdf_path:wx.MessageBox('Please select a PDF file first!', 'Error', wx.OK | wx.ICON_ERROR)word">returnword">if word">not os.path.exists(pdf_path):wx.MessageBox('Selected PDF file does not exist!', 'Error', wx.OK | wx.ICON_ERROR)word">return# Generate output path (same name, same directory, .docx extension)docx_path = os.path.splitext(pdf_path)[0] + '.docx'word">try:# Update statusself.status_text.SetLabel("Converting... Please wait.")self.Layout()# Convert PDF to Wordcv = Converter(pdf_path)cv.convert(docx_path)cv.close()# Show success messageself.status_text.SetLabel("Conversion completed successfully!")wx.MessageBox(f'PDF has been converted to Word!\nSaved as: {docx_path}','Success',wx.OK | wx.ICON_INFORMATION)word">except Exception word">as e:# Show error messageself.status_text.SetLabel("Conversion failed!")wx.MessageBox(f'An error occurred during conversion:\n{str(e)}','Error',wx.OK | wx.ICON_ERROR)word">if __name__ == '__main__':# Initialize wx applicationapp = wx.App()# Create and show frameframe = PDFConverterFrame()frame.Show()# Start application main loopapp.MainLoop()
项目要求
代码结构
我们来看看完整的代码,并逐行解析每个部分的功能。
python">word">import wx
word">import os
word">from pdf2docx word">import Converterword">class PDFConverterFrame(wx.Frame):word">def __init__(self):super().__init__(parent=None, title='PDF to Word Converter', size=(500, 200))self.pdf_path = None# 创建主面板panel = wx.Panel(self)# 创建垂直排列的布局vbox = wx.BoxSizer(wx.VERTICAL)# 创建文件选择控件self.file_picker = wx.FilePickerCtrl(panel, message="Choose a PDF file",wildcard="PDF files (*.pdf)|*.pdf",style=wx.FLP_USE_TEXTCTRL | wx.FLP_OPEN | wx.FLP_FILE_MUST_EXIST)vbox.Add(self.file_picker, 0, wx.ALL | wx.EXPAND, 5)# 创建状态文本控件self.status_text = wx.StaticText(panel, label="Select a PDF file to convert")vbox.Add(self.status_text, 0, wx.ALL | wx.CENTER, 5)# 创建转换按钮convert_btn = wx.Button(panel, label='Convert to Word')convert_btn.Bind(wx.EVT_BUTTON, self.on_convert)vbox.Add(convert_btn, 0, wx.ALL | wx.CENTER, 5)# 设置面板布局panel.SetSizer(vbox)# 窗口居中显示self.Centre()word">def on_convert(self, event):# 获取选择的 PDF 文件路径pdf_path = self.file_picker.GetPath()word">if word">not pdf_path:wx.MessageBox('Please select a PDF file first!', 'Error', wx.OK | wx.ICON_ERROR)word">returnword">if word">not os.path.exists(pdf_path):wx.MessageBox('Selected PDF file does not exist!', 'Error', wx.OK | wx.ICON_ERROR)word">return# 生成输出路径(同名的 DOCX 文件)docx_path = os.path.splitext(pdf_path)[0] + '.docx'word">try:# 更新状态文本为正在转换self.status_text.SetLabel("Converting... Please wait.")self.Layout()# 使用 pdf2docx 库进行转换cv = Converter(pdf_path)cv.convert(docx_path)cv.close()# 转换成功后更新状态文本self.status_text.SetLabel("Conversion completed successfully!")wx.MessageBox(f'PDF has been converted to Word!\nSaved as: {docx_path}','Success',wx.OK | wx.ICON_INFORMATION)word">except Exception word">as e:# 如果发生错误,显示错误信息self.status_text.SetLabel("Conversion failed!")wx.MessageBox(f'An error occurred during conversion:\n{str(e)}','Error',wx.OK | wx.ICON_ERROR)word">if __name__ == '__main__':# 启动 wxPython 应用app = wx.App()# 创建并显示窗口frame = PDFConverterFrame()frame.Show()# 进入应用的主循环app.MainLoop()
代码解析
1. 创建窗口和面板
我们首先通过 wx.Frame
创建了主窗口,wx.Panel
用作主窗口中的面板,所有控件都将放置在这个面板中。wx.BoxSizer(wx.VERTICAL)
用来管理控件的布局,确保它们在窗口中按垂直方向排列。
python">panel = wx.Panel(self)
vbox = wx.BoxSizer(wx.VERTICAL)
2. 文件选择器
我们使用 wx.FilePickerCtrl
来允许用户选择 PDF 文件。通过设置 wildcard
,我们限制了文件选择框只显示 .pdf
文件。
python">self.file_picker = wx.FilePickerCtrl(panel, message="Choose a PDF file",wildcard="PDF files (*.pdf)|*.pdf",style=wx.FLP_USE_TEXTCTRL | wx.FLP_OPEN | wx.FLP_FILE_MUST_EXIST
)
3. 状态文本
状态文本用来实时反馈转换过程中的信息(如正在转换、转换成功或失败)。
python">self.status_text = wx.StaticText(panel, label="Select a PDF file to convert")
4. 转换按钮
点击按钮时触发 on_convert
方法,该方法首先检查是否选择了文件,然后检查文件是否存在,最后调用 pdf2docx
库进行转换。
python">convert_btn = wx.Button(panel, label='Convert to Word')
convert_btn.Bind(wx.EVT_BUTTON, self.on_convert)
5. 文件转换
文件转换过程通过 pdf2docx.Converter
完成。转换过程中,程序会更新状态文本,提示用户正在进行转换,并在成功完成后显示结果信息。
python">cv = Converter(pdf_path)
cv.convert(docx_path)
cv.close()
6. 错误处理
如果转换过程中出现任何问题,程序会捕获异常并弹出错误提示。
python">word">except Exception word">as e:self.status_text.SetLabel("Conversion failed!")wx.MessageBox(f'An error occurred during conversion:\n{str(e)}', 'Error', wx.OK | wx.ICON_ERROR)
如何运行这个程序
-
确保你已经安装了所需的 Python 库:
pip install wxPython pdf2docx
-
在终端或命令行中运行该文件:
python pdf_to_word_converter.py
-
打开程序后,选择一个 PDF 文件,点击“Convert to Word”按钮,程序会自动将其转换为 Word 文件。