from PyPDF2 import PdfWriter, PdfReader inputpdf = PdfReader(open("document.pdf", "rb")) for i in range(len(inputpdf.pages)): output ...
確定! 回上一頁