7

I am looking to Extract Text with its Font Details (Style,Size,color,Italic etc) from a PDF in Python.

I need to extract text and its metadata for translation purpose.Can anyone suggest any libraries for the same.

Community
  • 1
  • 1
Udaya Kiran
  • 71
  • 1
  • 3

1 Answers1

1

There is a python library for that. Please have a look at PDFMiner.

http://www.unixuser.org/~euske/python/pdfminer/index.html.

pdftext.py gives you the text extracted out of pdf and it also gives you other information like font and font size etc.

You can try that.

Note: Python 3 is not supported

Keshav Agrawal
  • 577
  • 9
  • 23