Giter VIP home page Giter VIP logo

Comments (3)

bsdcpp avatar bsdcpp commented on May 26, 2024 1

Thanks a lot for your answer, amazing, it works.

from pymupdf.

JorjMcKie avatar JorjMcKie commented on May 26, 2024

Applying redactions massively changes the structure of a PDF page.

As always in similar cases, this should be done outside a loop that iterates over the same objects. The following modified script works:

import fitz, sys

src = fitz.open(sys.argv[1])
doc = fitz.open()
for spage in src:
    redact_area = fitz.Rect(100, 100, 200, 200)
    spage.add_redact_annot(redact_area)
    spage.apply_redactions()  # clears areas to exclude

for spage in src:
    w, h = spage.rect.br
    page = doc.new_page(width=w, height=h)
    page.show_pdf_page(page.rect, src, spage.number, clip=spage.rect)

doc.ez_save(src.name.replace(".pdf", "-redacted.pdf"), garbage=4)

from pymupdf.

JorjMcKie avatar JorjMcKie commented on May 26, 2024

We will consider documenting an according caveat.

from pymupdf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.