围绕文本边界的差距

时间:2016-09-08 12:57:15

标签: python matplotlib

我想在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")

这给出了图像,它显示了S和6个符号的间隙。 enter image description here

我正在使用matplotlib 1.5.1。

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")

......它产生了这个:

enter image description here

接受的关键字参数实际上是GraphicsContextBase类的所有set_*(减去“set_”prefixe)方法。您可以在课程文档中找到有关可接受值的详细信息。