Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
420 views
in Technique[技术] by (71.8m points)

python - How to Draw a Red line Box highlight around a text in PDF

I am trying to draw a red line as highlight around a text in a PDF document, I am successful in highlighting with yellow shade, could someone please help me in drawing a red box outline around that text

Thanks in advance.

Below is the code I am working with.

import fitz
doc = fitz.open("file.pdf")
page = doc[0]
text = "Department"
text_instances = page.searchFor(text)
### HIGHLIGHT

for inst in text_instances:
    highlight = page.addHighlightAnnot(inst)

doc.save("output_pdf_1.pdf", garbage=4, deflate=True, clean=True)

Thanks

question from:https://stackoverflow.com/questions/66045957/how-to-draw-a-red-line-box-highlight-around-a-text-in-pdf

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...