matplotlib缩放文本(花括号)

时间:2018-04-26 09:38:01

标签: python matplotlib svg

我想在我的情节中使用大括号'}',它们都有不同的高度,但宽度相同。 到目前为止缩放文本时,宽度按比例缩放:

import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_axes([0, 0, 1, 1])
ax.text(0.2, 0.2, '}', fontsize=20)
ax.text(0.4, 0.2, '}', fontsize=40)
plt.show()

我想到的唯一想法是用matplotlib图像覆盖大括号的图像,例如使用Importing an svg file a matplotlib figure中的svgutils,但这很麻烦。

以矢量图形作为输出的解决方案将是理想的。

1 个答案:

答案 0 :(得分:3)

要获得仅在一个维度上缩放的字母,例如高度但保持另一个维度不变,您可以将大括号创建为TextPath。这可以作为PathPatch的输入提供。 PathPatch可以使用matplotlib.transforms任意缩放。

import matplotlib.transforms as mtrans
from matplotlib.text import TextPath
from matplotlib.patches import PathPatch

import matplotlib.pyplot as plt
fig, ax = plt.subplots()

def curly(x,y, scale, ax=None):
    if not ax: ax=plt.gca()
    tp = TextPath((0, 0), "}", size=1)
    trans = mtrans.Affine2D().scale(1, scale) + \
        mtrans.Affine2D().translate(x,y) + ax.transData
    pp = PathPatch(tp, lw=0, fc="k", transform=trans)
    ax.add_artist(pp)

X = [0,1,2,3,4]
Y = [1,1,2,2,3]
S = [1,2,3,4,1]

for x,y,s in zip(X,Y,S):
    curly(x,y,s, ax=ax)

ax.axis([0,5,0,7])
plt.show()

enter image description here