相关文章推荐
骑白马的蚂蚁  ·  excel中“已超出每日 Python ...·  1 周前    · 
坏坏的手术刀  ·  如果出现“必须在附加到新父visual之前从 ...·  1 年前    · 
干练的红薯  ·  MySQL查询出10个结果,将这是个结果作为 ...·  1 年前    · 
没有腹肌的长颈鹿  ·  ggplot2(5) 工具箱 - ...·  1 年前    · 
文质彬彬的冲锋衣  ·  NuGet 2.6 发行说明 | ...·  2 年前    · 
逆袭的电梯  ·  MIRO发票校验BAPI_INCOMINGI ...·  2 年前    · 
Code  ›  Python处理PDF及生成多层PDF开发者社区
python 社区功能
https://cloud.tencent.com/developer/article/1163781
低调的饭盒
2 年前
作者头像
大江小浪
0 篇文章

Python处理PDF及生成多层PDF

前往专栏
腾讯云
备案 控制台
开发者社区
学习
实践
活动
专区
工具
TVP
文章/答案/技术大牛
写文章
社区首页 > 专栏 > 小狼的世界 > 正文

Python处理PDF及生成多层PDF

发布 于 2018-07-24 17:14:11
978 0
举报

Python提供了众多的PDF支持库,本文是在Python3环境下,试用了两个库来完成PDF的生成的功能。PyPDF对于读取PDF支持较好,但是没找到生成多层PDF的方法。Reportlab看起来更成熟,能够利用Canvas很方便的生成多层PDF,这样就能够实现图片扫描上来的内容也可以进行内容搜索的目标。

Reportlab

生成双层PDF

双层PDF应用PDF中的Canvas概念,先画文字,最后将图片画上去,这样就是两层的PDF。

import os
# import urllib2
import time
from reportlab import platypus
from reportlab.lib.pagesizes import letter
from reportlab.lib.units import inch
from reportlab.platypus import SimpleDocTemplate, Image
from reportlab.pdfgen import canvas
image_file = "./42.png"
# Use Canvas to generate pdf
c = canvas.Canvas('reportlab_canvas.pdf', pagesize=letter)
width, height = letter
c.setFillColorRGB(0,0.77,0.77)
# say hello (note after rotate the y coord needs to be negative!)
c.drawString( 3*inch, 3*inch, "Hello World")
c.drawImage(image_file, 0 , 0)
c.showPage()
c.save()

PyPDF2

读取PDF

from PyPDF2 import PdfFileWriter, PdfFileReader
output = PdfFileWriter()
input1 = PdfFileReader(open("jquery.pdf", "rb"))
# print document info
print(input1.getDocumentInfo())
# print how many pages input1 has:
print ("pdf_document.pdf has %d pages." % input1.getNumPages())
# print page content
page_content = input1.getPage(0).extractText()
print( page_content )
# add page 1 from input1 to output document, unchanged
output.addPage(input1.getPage(0))
# add page 2 from input1, but rotated clockwise 90 degrees
output.addPage(input1.getPage(1).rotateClockwise(90))
# finally, write "output" to document-output.pdf
outputStream = open("PyPDF2-output.pdf", "wb")
output.write(outputStream)

但是PyPDF获取PDF内容有很多问题,可以看这个 问题列表 。文档中也有说明。

| extractText(self) | ## | # Locate all text drawing commands, in the order they are provided in the | # content stream, and extract the text. This works well for some PDF | # files, but poorly for others, depending on the generator used. This will | # be refined in the future. Do not rely on the order of text coming out of | # this function, as it will change if this function is made more | # sophisticated. | # | # Stability: Added in v1.7, will exist for all future v1.x releases. May | # be overhauled to provide more ordered text in the future. | # @return a unicode string object

参考资料: 1、 PDF 1.0 2、 PyPDF 2

 
推荐文章
骑白马的蚂蚁  ·  excel中“已超出每日 Python 使用量配额”如何解决 - Microsoft Q&A
1 周前
坏坏的手术刀  ·  如果出现“必须在附加到新父visual之前从当前父Visual断开指定的子节点”异常,如何调试可视树-腾讯云开发者社区-腾讯云
1 年前
干练的红薯  ·  MySQL查询出10个结果,将这是个结果作为条件进行循环查询 - CSDN文库
1 年前
没有腹肌的长颈鹿  ·  ggplot2(5) 工具箱 - 叮叮当当sunny - 博客园
1 年前
文质彬彬的冲锋衣  ·  NuGet 2.6 发行说明 | Microsoft Learn
2 年前
逆袭的电梯  ·  MIRO发票校验BAPI_INCOMINGINVOICE_CREATE提示没有指定 ISO-CodeSPACE 的测量单位错误_sap 没有指定 iso 测量单位_SAP剑魂的博客-CSDN博客
2 年前
今天看啥   ·   Py中国   ·   codingpro   ·   小百科   ·   link之家   ·   卧龙AI搜索
删除内容请联系邮箱 2879853325@qq.com
Code - 代码工具平台
© 2024 ~ 沪ICP备11025650号