码迷,mamicode.com
首页 > 编程语言 > 详细

利用Python将多个PDF文件合并

时间:2020-02-12 10:42:48      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:emerge   https   style   tps   PDF文件   pdf   rom   write   说明   

from PyPDF2 import PdfFileMerger
import os


files = os.listdir()#列出目录中的所有文件
merger = PdfFileMerger() for file in files: #从所有文件中选出pdf文件合并 if file[-4:] == ".pdf": merger.append(open(pdf, ‘rb‘)) with open(‘newfile.pdf‘, ‘wb‘) as fout: #输出文件为newfile.pdf merger.write(fout)

更加详细的说明:Python实现PyPDF2处理PDF文件的方法示例

利用Python将多个PDF文件合并

标签:emerge   https   style   tps   PDF文件   pdf   rom   write   说明   

原文地址:https://www.cnblogs.com/conpi/p/12297763.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!