Python Forum
[PyMuPDF] Grab all strings of a given size?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[PyMuPDF] Grab all strings of a given size?
#4
Something like this:

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
Reply


Messages In This Thread
RE: [PyMuPDF] Grab all strings of a given size? - by Pedroski55 - Dec-26-2023, 07:39 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  scan network and grab details of hosts found robertkwild 5 1,252 Aug-07-2024, 05:21 PM
Last Post: Larz60+
  Python Code Help - pip install PyMuPDF python-docx pillow Splishsplash92 3 1,813 Jun-05-2024, 06:49 AM
Last Post: Pedroski55
  Can't stop keyboard listener to grab chars typed inside CTk window Valjean 9 3,414 Sep-25-2023, 08:07 PM
Last Post: deanhystad
  Trying to understand strings and lists of strings Konstantin23 2 1,703 Aug-06-2023, 11:42 AM
Last Post: deanhystad
  PyMuPDF rob101 0 1,056 Oct-04-2022, 01:11 PM
Last Post: rob101
  [SOLVED] [ElementTree] Grab text in attributes? Winfried 3 2,456 May-27-2022, 04:59 PM
Last Post: Winfried
  Splitting strings in list of strings jesse68 3 2,531 Mar-02-2022, 05:15 PM
Last Post: DeaD_EyE
  Screen capture opencv - grab error Kalman15 1 2,645 Jan-27-2022, 12:22 PM
Last Post: buran
  size of set vs size of dict zweb 0 2,613 Oct-11-2019, 01:32 AM
Last Post: zweb
  Grab and Parse a chunkc of text sumncguy 4 3,288 Oct-07-2019, 05:17 PM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020