博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python实现PDF文件截取
阅读量:5303 次
发布时间:2019-06-14

本文共 439 字,大约阅读时间需要 1 分钟。

python3截取PDF文件中的一部分。

from PyPDF2 import PdfFileWriter, PdfFileReader# 开始页start_page = 0# 截止页end_page = 5output = PdfFileWriter()pdf_file = PdfFileReader(open("input.pdf", "rb"))pdf_pages_len = pdf_file.getNumPages()# 保存input.pdf中的1-5页到output.pdffor i in range(start_page, end_page):    output.addPage(pdf_file.getPage(i))outputStream = open("output.pdf", "wb")output.write(outputStream)

 

转载于:https://www.cnblogs.com/LicwStack/p/7068659.html

你可能感兴趣的文章
7.5 文件操作
查看>>
DFS-hdu-2821-Pusher
查看>>
Spring事务管理的三种方式
查看>>
MyEclipse中将普通Java项目convert(转化)为Maven项目
查看>>
node js 安装.node-gyp/8.9.4 权限 无法访问
查看>>
Java_正则表达式
查看>>
Linux内核分析——第二周学习笔记
查看>>
windows基本命令
查看>>
Qt图片显示效率的比较(转)
查看>>
VMware中CentOS设置静态IP
查看>>
剑指Offer_编程题_7
查看>>
js 变量大小写
查看>>
Linux系统的启动原理
查看>>
JDesktopPane JInternalFrames
查看>>
错误The request sent by the client was syntactically incorrect ()的解决
查看>>
Java基础知识学习(九)
查看>>
redis在windows下总是报错,就是下面的错误,这是哪里出错了
查看>>
Asp.net窄屏页面 手机端新闻列表
查看>>
Linux 密钥验证
查看>>
windows下UDP服务器和客户端的实现
查看>>