0

我正在尝试编写一个简单的脚本来合并两个 PDF,但是在尝试将输出保存到磁盘时遇到了问题。我的代码是

from PyPDF2 import PdfFileWriter, PdfFileReader
import tkinter as tk
from tkinter import filedialog    

### Prompt the user for the 2 files to use via GUI ###
root = tk.Tk()
root.update()
file_path1 = tk.filedialog.askopenfilename(
            filetypes=[("PDF files", "*.pdf")],
            )

file_path2 = tk.filedialog.askopenfilename(
            filetypes=[("PDF files", "*.pdf")],
            )

###Function to combine PDFs###
output = PdfFileWriter()

def append_pdf_2_output(file_handler):
    for page in range(file_handler.numPages):
        output.addPage(file_handler.getPage(page))

#Actually combine the 2 PDFs###
append_pdf_2_output(PdfFileReader(open(file_path1, "rb")))
append_pdf_2_output(PdfFileReader(open(file_path2, "rb")))

###Prompt the user for the file save###
output_name = tk.filedialog.asksaveasfile(
            defaultextension='pdf')

###Write the output to disk###
output.write(output_name)
output.close

问题是我得到一个错误

UserWarning:要写入的文件不是二进制模式。它可能没有正确写入。[pdf.py:453] Traceback(最近一次调用最后一次):文件“Combine2Pdfs.py”,第 44 行,在 output.write(output_name) 文件“/Library/Frameworks/Python.framework/Versions/3.5/lib/pytho”中​n3.5/site-packages/P‌​yPDF2/pdf.py”,第 487 行,在 write stream.write(self.header + b ("\n")) TypeError: write() argument must be str, not字节

我哪里出错了?

4

2 回答 2

2

我通过将 mode = 'wb' 添加到 tk.filedialog.asksaveasfile 得到它。现在是

output_name = tk.filedialog.asksaveasfile(
        mode = 'wb',
        defaultextension='pdf')
output.write(output_name)
于 2016-12-05T06:59:41.380 回答
1

尝试使用tk.filedialog.asksaveasfilename而不是tk.filedialog.asksaveasfile. 您只需要文件名,而不是文件处理程序本身。

###Prompt the user for the file save###
output_name = tk.filedialog.asksaveasfilename(defaultextension='pdf')
于 2016-12-02T09:57:11.397 回答