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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…