PDF转图片或Word文档

查看 132|回复 12
作者:KentChen0126   
因工作需要,经常要将PDF转换为图片,所以自己摸索使用Python写一个PDF转换器,现在分享出来,与大家一起交流。
一、功能:
    1、将PDF文件转换为JPG图片;
    2、将PDF文件转换为Word文档,若PDF文件是通过Word文档转换的,可完美转换为可编辑Word文档。
    3、可选择多个文件或文件夹批量转换。
三、界面展示:


界面.jpg (16.94 KB, 下载次数: 0)
下载附件
2024-1-9 23:37 上传

三、需要的第三方库:
[Python] 纯文本查看 复制代码pdf2docx==0.5.7
PyMuPDF==1.23.8
四、源代码;
[Python] 纯文本查看 复制代码import tkinter as tk
from tkinter import filedialog
import fitz
from pdf2docx import Converter
import os
import time
import threading
import ctypes
class PdfConverter:
    def __init__(self):
        self.root = tk.Tk()
        self.root.title('PDF转换器')
        self.root.geometry("500x300+350+250")
        #self.root.resizable(width=False,height=False)禁用最大化
        #self.root.overrideredirect(1)删除主窗口标题栏
        self.interface()
    def interface(self):
        """"界面编写位置"""
        self.Button0 = tk.Button(self.root, text="选择文件", command=self.multiple_files)
        self.Button0.grid(row=0, column=0, pady=20)
        self.Button0 = tk.Button(self.root, text="选择文件夹", command=self.single_folder)
        self.Button0.grid(row=0, column=1, pady=20)
        self.Button1 = tk.Button(self.root, text="转为图片", command=self.start_to_jpg)
        self.Button1.grid(row=0, column=2, pady=20)
        self.Button2 = tk.Button(self.root, text="转为Word", command=self.start_to_word)
        self.Button2.grid(row=0, column=3, pady=20)
        self.w1 = tk.Text(self.root, width=68, height=15)
        self.w1.insert('insert','说明:1、文件可单选或多选;文件夹下文件均需转换,可直接选择文件夹;\n      2、转换后文件保存位置为所选文件或文件夹位置。')
        self.w1.grid(row=1, column=0, columnspan=4, padx=10)
    def single_folder(self):
        '''获取单个文件夹'''
        path = filedialog.askdirectory() + '/'
        files_path = [os.path.join(path,i) for i in os.listdir(path) if os.path.splitext(i)[-1].lower() == '.pdf']
        if len(files_path) != 0:
            self.w1.delete('1.0',tk.END)
            self.w1.insert('insert','\n'.join(files_path))
    def multiple_files(self):
        '''获取多个文件'''
        path = filedialog.askopenfilenames(filetypes=[('All Files', '.PDF')])
        if len(path) != 0:
            self.w1.delete('1.0',tk.END)
            self.w1.insert('insert','\n'.join(path))
    def pdf_to_jpg(self):
        '''将PDF转换为图片'''
        start_time = time.time()
        for file in self.path_list:
            os.makedirs(os.path.splitext(file)[0],exist_ok=True) # 创建以PDF文件名命名的文件夹
            pdf = fitz.open(file) # 打开PDF文件
            temp = 0
            for pg in range(pdf.page_count):
                page = pdf[pg]
                temp += 1
                rotate = int(0)
                # 每个尺寸的缩放系数为2,这将为我们生成分辨率提高四倍的图像。
                zoom_x = 2
                zoom_y = 2
                trans = fitz.Matrix(zoom_x, zoom_y).prerotate(rotate)
                pm = page.get_pixmap(matrix=trans, alpha=False)
                pic_name = '{}.jpg'.format(temp)
                #拼接生成图片存放的文件路径
                pic_pwd = os.path.join(os.path.splitext(file)[0], pic_name)
                pm.save(pic_pwd)
            self.w1.insert('end','完成 %s 转换\n' % os.path.split(file)[1])
            #self.w1.insert(tk.INSERT,'\n')换行
        end_time = time.time()
        self.w1.insert('end','转换已完成,共用时 %.2f 秒' % ((end_time - start_time)))
        
    def start_to_jpg(self):
        #将路径字符串转换为列表,strip():去除字符串前后空格或特殊字符;split('\n'):将字符串转为列表,元素以换行符分割
        self.path_list = self.w1.get('1.0','end').strip().split('\n')
        self.w1.delete('1.0',tk.END)
        if os.path.isfile(self.path_list[0]):
            self.T = threading.Thread(target=self.pdf_to_jpg)
            self.T.setDaemon(True)
            self.T.start()
        else:
            self.w1.insert('insert','请选择文件或文件夹')
    def pdf_to_word(self):
        '''将PDF转换为WORD'''
        start_time = time.time()
        for file in self.path_list:
            docx_name = os.path.splitext(file)[0] + '.docx'
            cv = Converter(file)
            cv.convert(docx_name)
            cv.close
            self.w1.insert('end','完成 %s 转换\n' % os.path.split(file)[1])
            #self.w1.insert(tk.INSERT,'\n')换行
        end_time = time.time()
        self.w1.insert('end','转换已完成,共用时 %.2f 秒' % ((end_time - start_time)))
    def start_to_word(self):
        #将路径字符串转换为列表,strip():去除字符串前后空格或特殊字符;split('\n'):将字符串转为列表,元素以换行符分割
        self.path_list = self.w1.get('1.0','end').strip().split('\n')
        self.w1.delete('1.0',tk.END)
        if os.path.isfile(self.path_list[0]):
            self.T = threading.Thread(target=self.pdf_to_word)
            self.T.setDaemon(True)
            self.T.start()
        else:
            self.w1.insert('insert','请选择文件或文件夹')
if __name__ == '__main__':
    whnd = ctypes.windll.kernel32.GetConsoleWindow()
    if whnd != 0:
        ctypes.windll.user32.ShowWindow(whnd, 0)
        ctypes.windll.kernel32.CloseHandle(whnd)
    a = PdfConverter()
    #a.root.after(1000,a.pdf_to_jpg)
    a.root.mainloop()
[table][tr][td]应大家要求,将源代码打包成EXE文件并放到蓝奏云网盘了,供大家下载。
源代码稍作修改:
1、增加右侧滚动条;
2、转换成Word文档时将转换日志显示出来。
打包文件如下:
https://www.ilanzou.com/s/07WNOdD

文件, 转换为

topcoolgame   

建议 打包成exe 安装或者运行文件,方便小白直接使用。  此程序已收入到,不可错过的施用工具
BilboBaggins   

下载链接呢,小白不会用
丶丿後宫   

谢谢分享
kakaxixi2024   

看看怎么样,正好需要办公使用到,谢谢。
刘大富   

感谢分享
zhangting2022   


kakaxixi2024 发表于 2024-1-10 02:55
看看怎么样,正好需要办公使用到,谢谢。

效果怎么样?
你是谁啊这么帅   

感谢大佬分享
chyutong   

感谢楼主分享
Python666999   

先收藏了,再学习使用
您需要登录后才可以回帖 登录 | 立即注册

返回顶部