Skip to content

Remove text not working in 1.23.25 version vs 1.20.2 #3196

@bilykigor

Description

@bilykigor

Description of the bug

Text removal from pdf with PyMuPDF

works good in python3.8 and PyMuPDF 1.20.2: Python bindings for the MuPDF 1.20.3 library

Screen Shot 2024-02-21 at 11 12 42 PM

but if used python3.12 and PyMuPDF 1.23.25 - not all text is removed

Screen Shot 2024-02-21 at 11 09 57 PM

How to reproduce the bug

`import fitz
pdf_doc = fitz.open('data/file.pdf')
page = pdf_doc.load_page(0)
for block in page.get_text("words"):
rect = fitz.Rect(block[:4])
page.add_redact_annot(rect)
page.apply_redactions()

pdf_doc.save('data/file_1.pdf')
pdf_doc.close()`

PyMuPDF version

1.23.25

Operating system

MacOS

Python version

3.12

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions