英文:
Keywords being highlighted in wrong color using PyMuPDF
问题
我正在进行一些基本的关键词高亮显示,但遇到了一个奇怪的问题。当我输入具有浮点RGB值的描边颜色时(如下所示),高亮显示会以多种不同的颜色显示。在这种情况下,我希望高亮显示为橙色。有些单词是橙色,而其他一些则更接近红色。你知道这里发生了什么吗?如果我将RGB值更改为整数,高亮显示的颜色就都相同了。请告诉我如果你需要看到任何其他代码。
英文:
I'm doing some basic keyword highlighting, but I'm running into a strange issue. When I enter a stroke color with floating point RGB values (as shown below), the highlights come out in multiple different colors. In this case, I want the highlights to be orange. Some words are orange while others are more red. Any idea what's going on here? If I change the the RGB values to integers, the highlight colors are all the same. Please let me know if there's any additional code you need to see.
annot = page.add_highlight_annot(word)
annot.set_colors(stroke=(1, 0.5, 0))
annot.update()
答案1
得分: 1
这是一张所有文字都被突出显示的图片。相邻的单词显示出一些颜色重叠,颜色明显较深。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论