PyLab - 更改文本框的文本颜色和背景填充颜色

发布于 2024-08-26 03:19:32 字数 212 浏览 1 评论 0原文

我正在使用 PyLab 在 Python 中制作一些图表。我想制作一个带有黑色文本的洋红色文本框,但无法将文本变为黑色。

text(x, y, 'Summary', backgroundcolor = 'm', color = 'k')

这给了我一个洋红色的背景,然后是几乎同样粉红色的文本。有什么想法我做错了吗?

非常感谢!

I'm using PyLab to make some graphs in Python. I want to make a text box that is colored magenta with black text, but cannot get the text to be black.

text(x, y, 'Summary', backgroundcolor = 'm', color = 'k')

This gives me a magenta background and then text that is almost just as pink. Any ideas what I'm doing wrong?

Many thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

李白 2024-09-02 03:19:32

看起来您没有做错任何事情:

In [23]: pylab.text(0.25, 0.5, 'test', backgroundcolor='m', color='r')
In [24]: pylab.text(0.5, 0.5, 'test', backgroundcolor='m', color='k')
In [25]: pylab.text(0.75, 0.5, 'test', backgroundcolor='m', color='b')

alt text http:// Student.physicals.ucdavis.edu/~rjames/test.png

也许在您的代码(或 matplotlib 安装)的其他地方,从字符串到颜色的映射已损坏?

it doesn't appear as though you're doing anything wrong:

In [23]: pylab.text(0.25, 0.5, 'test', backgroundcolor='m', color='r')
In [24]: pylab.text(0.5, 0.5, 'test', backgroundcolor='m', color='k')
In [25]: pylab.text(0.75, 0.5, 'test', backgroundcolor='m', color='b')

alt text http://student.physics.ucdavis.edu/~rjames/test.png

perhaps somewhere else in your code (or matplotlib installation) the mapping from strings to colors has been corrupted?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文