我想在matplotlib图中的某些文本周围添加边框,我可以使用patheffects.withStroke
来完成。但是,对于某些字母和数字,符号的右上角有一个小间隙。
有没有办法没有这个差距?
最小的工作示例:
import matplotlib.pyplot as plt
import matplotlib.patheffects as patheffects
fig, ax = plt.subplots()
ax.text(
0.1, 0.5, "test: S6",
color='white',
fontsize=90,
path_effects=[patheffects.withStroke(linewidth=13, foreground='black')])
fig.savefig("text_stroke.png")
我正在使用matplotlib 1.5.1。
答案 0 :(得分:2)
文档没有提到它(或者我没有找到它)但是,在代码中搜索,我们可以看到patheffects.withStroke
方法接受了很多关键字参数。
您可以通过在交互式会话中执行此操作来获取这些关键字参数的列表:
>>> from matplotlib.backend_bases import GraphicsContextBase as gcb
>>> print([attr[4:] for attr in dir(gcb) if attr.startswith("set_")])
['alpha', 'antialiased', 'capstyle', 'clip_path', 'clip_rectangle', 'dashes', 'foreground', 'gid', 'graylevel', 'hatch', 'joinstyle', 'linestyle', 'linewidth', 'sketch_params', 'snap', 'url']
您要查找的参数是capstyle
,它接受3个可能的值:
在您的情况下,“圆”值似乎可以解决问题。 请考虑以下代码......
import matplotlib.pyplot as plt
import matplotlib.patheffects as patheffects
fig, ax = plt.subplots()
ax.text(
0.1, 0.5, "test: S6",
color='white',
fontsize=90,
path_effects=[patheffects.withStroke(linewidth=13, foreground='black', capstyle="round")])
fig.savefig("text_stroke.png")
......它产生了这个:
接受的关键字参数实际上是GraphicsContextBase类的所有set_*
(减去“set_”prefixe)方法。您可以在课程文档中找到有关可接受值的详细信息。