我一直在尝试使用以下循环将多个文档中的多个页面使用相同的前景与 PyPDF2 合并。
for item in file_list: # loops through 16 pdf files
print("Processing " + item)
if item.endswith(".pdf"):
output_to_file = "/Users/" + getuser() + "/Target/" + item
background = PdfFileReader(open(source_files + item, "rb"))
page_count = background.getNumPages()
for n in range(page_count):
x, y, w, h = background.getPage(n).mediaBox # get size of mediaBox
if w > h:
foreground = PdfFileReader(open("b_landscape.pdf", "rb"))
else:
foreground = PdfFileReader(open("b_portrait.pdf", "rb"))
input_file = background.getPage(n)
input_file.mergePage(foreground.getPage(0))
output.addPage(input_file)
with open(output_to_file, "wb") as outputStream:
output.write(outputStream)
结果是一系列 pdf 文件的大小越来越大,即第一个文件约为 6MB,在第 16 次循环之后,生成的文件约为 70MB。似乎正在发生的事情是前景图像被带入下一个循环。我尝试使用重新初始化 PageObject (input_file)
input_file = None
无济于事。如果有人有建议,将不胜感激。