使用 python 更改文本颜色或使用多种颜色突出显示文本

change text color or highlight text with multiple colors using python

我正在尝试阅读 pdf 并突出显示 pdf 中的一些子字符串,我能够使用 python 库 PYPDF2菲茨

但我想突出显示/更改不同颜色的文本并保留原始 pdf 的布局,

请指教,谢谢

我们无法更改 pdf 中文字的文本颜色,但我们可以使用

highlight annot

使用默认颜色(“黄色”),

如果需要更多颜色,我们需要制作

square annot

使用 pymupdf 库,这对我有用 python