Python中用PyPDF2拆分pdf提取頁面

tony0087發表於2021-09-11

有時候我們只需要pdf中的幾頁,或許還想把這幾頁內容整合成新的pdf,那該怎麼做呢?

準備工作:

安裝擴充套件庫PyPDF2,參考命令

pip install PyPDF2

程式碼如下:

from PyPDF2 import PdfFileReader, PdfFileWriter def split_pdf(filename, result, start=0, end=None):    """從filename中提取[start,end)之間的頁碼內容儲存為result"""    # 開啟原始 pdf 檔案    pdf_src = PdfFileReader(filename)    if end is None:        # 獲取頁數        end = pdf_src.getNumPages()    with open(result, "wb") as fp:        # 建立空白pdf檔案        pdf = PdfFileWriter()        # 提取頁面內容,寫入空白檔案        for num in range(start, end):            pdf.addPage(pdf_src.getPage(num))        # 寫入結果pdf        pdf.write(fp) fn = r"G:a001第九天.pdf" split_pdf(fn, "1.pdf", 0, 3) split_pdf(fn, "2.pdf", 1, 3) split_pdf(fn, "3.pdf", 2, 3)

遇見的問題一:

Traceback (most recent call last):  File "G:/a001/pdf.py", line 22, insplit_pdf(fn, "1.pdf", 0, 3)  File "G:/a001/pdf.py", line 7, in split_pdf    pdf_src = PdfFileReader(filename)  File "E:project_luffyluffylibsite-packagesPyPDF2pdf.py", line 1084, in __init__    self.read(stream)  File "E:project_luffyluffylibsite-packagesPyPDF2pdf.py", line 1901, in read    raise utils.PdfReadError("Could not find xref table at specified location") PyPDF2.utils.PdfReadError: Could not find xref table at specified location

還沒有找到好的解決問題的辦法,但是我在操作過程中換了一個新的pdf檔案就成功了,猜測是你的pdf檔案出了問題。

遇見的問題二:

在解決了上面的問題之後,程式可以正常的使用,但是還會出一個問題:

PdfReadWarning: Xref table not zero-indexed. ID numbers for objects will be corrected. [pdf.py:1736]

雖然不影響,但是體驗不好啊 ,繼續解決吧

import sys if not sys.warnoptions:    import warnings    warnings.simplefilter("ignore")

上面程式碼要加在最上面

關於PyPDF2的內容,昨天有詳細講解過,不會的小夥伴可以檢視:

(推薦作業系統:windows7系統、Python 3.9.1,DELL G3電腦。)

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/1747/viewspace-2832482/,如需轉載,請註明出處,否則將追究法律責任。

相關文章