嗨,我正在尝试更改 pdf 中的突出显示颜色,但无法这样做。默认突出显示颜色为黄色,但我想更改它以下是我的代码:
import fitz
doc = fitz.open(r"path\input.pdf")
page=doc[0]
text="some text"
text_instances = page.searchFor(text)
for inst in text_instances:
highlight = page.addHighlightAnnot(inst)
highlight.setColors(colors='Red')
highlight.update()
doc.save(r"path\output.pdf")
另外,我如何一起搜索整个 pdf 而不仅仅是一页
以及如何突出显示pdf中给出的图像上的文本