How to extract text from a Specific Area in a PDF using Python?

烂漫一生 提交于 2019-12-07 04:16:53

问题


I'm trying to extract Text from a PDF using Python, and I have successfully done so using PyPDF2 like this:

import PyPDF2
pdfFileObj = open('path', 'rb')
pdfReader = PyPDF2.PdfFileReader(pdfFileObj)
pageObj = pdfReader.getPage(0)
pageObj.extractText()

This extracts all the Text from the Page, but I want to extract the text only from a Rectangular region of 3'x4' at the top-left part of the page.

I Basically want to do something like :How-to extract text from a pdf doc within a specific rectangular region? but in Python

Can this be done by PyPDF2 or by any other Python Library?


回答1:


This is a rather complex topic, but it is possible. First you need to get familiar with the pdf format descripton.

Start here for example.

You can identify the location and contents of the text boxes and extract the string data.

This topic holds examples for pyPdf, the previous version of PyPDF2, but syntax is similar. There are examples on how to iterate through the indirect objects.

A good place to start is also the source of the function pageObj.extractText() that you used.

If you are not restricted to Python: How to extract text from a PDF?



来源:https://stackoverflow.com/questions/45791187/how-to-extract-text-from-a-specific-area-in-a-pdf-using-python

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!