Dec-26-2023, 07:39 AM
Something like this:
The output below shows the list index and text height for each character of the first line of a little PDF I made.
import pdfplumber path2pdf = '/home/pedro/pdfs/pdfs/various_text_sizes.pdf' pdf = pdfplumber.open(path2pdf) for i in range(0, 11): print(i, pdf.chars[i]['height'], pdf.chars[i]['text'])The first line of my PDF is centred text at size 28: A Big Title
The output below shows the list index and text height for each character of the first line of a little PDF I made.
Output:0 28.0 A
1 28.0
2 28.0 B
3 28.0 i
4 28.0 g
5 28.0
6 28.0 T
7 28.0 i
8 28.0 t
9 28.0 l
10 28.0 e