本篇文章主要讲解,利用python的安装包 pypdf2 制作的可视化pdf合并工具 作者:任聪聪 日期:2022年1月27日
使用效果
说明: 1.文件列表可以手动进行编辑,一行一个。 2.可以指定输出的文件目录 3.可以设置新的文件名称
前置条件
1.安装 pypdf2 包
pip install pypdf2
2.准备几个测试用的pdf
代码实例
整体代码
from tkinter import *
from PyPDF2 import PdfFileMerger
import os
import random
import tkinter.messagebox as messagebox
from tkinter import filedialog
from pathlib import Path
import ctypes
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID("86115")
list_nums = random.randint(0,900)
class FilesToolsGui():
def __init__(self,tools_windows):
self.tools_windows = tools_windows
#窗口
def set_init_window(self):
|