PyLab - 更改文本框的文本颜色和背景填充颜色
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您没有做错任何事情:
alt text http:// Student.physicals.ucdavis.edu/~rjames/test.png
也许在您的代码(或 matplotlib 安装)的其他地方,从字符串到颜色的映射已损坏?
it doesn't appear as though you're doing anything wrong:
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?