gpt4 book ai didi

python - 使用python将多页pdf文件拆分为多个pdf文件?

转载 作者:IT老高 更新时间:2023-10-28 20:34:49 26 4
gpt4 key购买 nike

我想获取一个多页的 pdf 文件并为每页创建单独的 pdf 文件。

我已经下载了reportlab并浏览了文档,但它似乎是针对 pdf 生成的。我还没有看到任何关于自己处理 PDF 文件的内容。

有没有简单的方法在 python 中做到这一点?

最佳答案

from PyPDF2 import PdfFileWriter, PdfFileReader

inputpdf = PdfFileReader(open("document.pdf", "rb"))

for i in range(inputpdf.numPages):
output = PdfFileWriter()
output.addPage(inputpdf.getPage(i))
with open("document-page%s.pdf" % i, "wb") as outputStream:
output.write(outputStream)

等等

关于python - 使用python将多页pdf文件拆分为多个pdf文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/490195/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com