Python-123 合并merge pdf一个指定路径下的所有
- 需要对指定的一些pdf文件进行合并,所以如下是所用代码:只需要改目标文件路径和输出文件位置即可。
#pip install PyPDF2
from PyPDF2 import PdfFileMerger, PdfFileReader
from glob import glob
print(glob(pathname="E:\\GRAD_COURSES\\Ph.D_Publications\\2015-至今所有热西丁文章Publications\\1/*.pdf"))
mergepdf_base = PdfFileMerger()
for temppdfname in glob(pathname="E:\\GRAD_COURSES\\Ph.D_Publications\\2015-至今所有热西丁文章Publications\\1/*.pdf"):
mergepdf_base.append(PdfFileReader(temppdfname))
print("These are target PDF files:", temppdfname)
mergepdf_base.write("E:\\GRAD_COURSES\\Ph.D_Publications\\2015-202109所有热西丁文章Merged.pdf")
print("Merging of PDF files is finished!")
本文标题:Python-123 合并merge pdf一个指定路径下的所有
本文链接:https://www.haomeiwen.com/subject/ysazgltx.html
网友评论