14

我有一个启动的 matplotlib 脚本......

import matplotlib as mpl
import matplotlib.pyplot as plt
import matplotlib.font_manager as fm

mpl.rcParams['xtick.labelsize']=16 
...

我已经使用了命令

fm.findSystemFonts()

获取我系统上的字体列表。我发现了我想使用的 .ttf 文件的完整路径,

'/usr/share/fonts/truetype/anonymous-pro/Anonymous Pro BI.ttf'

我尝试使用以下命令使用此字体但没有成功

mpl.rcParams['font.family'] = 'anonymous-pro'  

mpl.rcParams['font.family'] = 'Anonymous Pro BI'

两者都返回类似

/usr/lib/pymodules/python2.7/matplotlib/font_manager.py:1218: UserWarning: findfont: Font family ['anonymous-pro'] not found. Falling back to Bitstream Vera Sans

我可以使用 mpl.rcParams 字典在我的图中设置这个字体吗?

编辑

在阅读了更多内容之后,这似乎是从 .ttf 文件中确定字体系列名称的一般问题。这在 linux 或 python 中容易做到吗?

另外,我尝试添加

mpl.use['agg']
mpl.rcParams['text.usetex'] = False

没有任何成功

4

3 回答 3

16

指定字体系列:

如果您只知道 ttf 的路径,那么您可以使用以下get_name方法发现字体系列名称:

import matplotlib as mpl
import matplotlib.pyplot as plt
import matplotlib.font_manager as font_manager

path = '/usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS.ttf'
prop = font_manager.FontProperties(fname=path)
mpl.rcParams['font.family'] = prop.get_name()
fig, ax = plt.subplots()
ax.set_title('Text in a cool font', size=40)
plt.show()

通过路径指定字体:

import matplotlib.pyplot as plt
import matplotlib.font_manager as font_manager

path = '/usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS.ttf'
prop = font_manager.FontProperties(fname=path)
fig, ax = plt.subplots()
ax.set_title('Text in a cool font', fontproperties=prop, size=40)
plt.show()
于 2013-05-15T21:03:54.123 回答
3

可以使用 fc-query myfile.ttf 命令根据 Linux 字体系统(fontconfig)查看字体的元数据信息。它应该打印你的名字 matplotlib 将接受。然而,matplotlib fontconfig 集成现在相当部分,所以我担心你很可能会遇到其他 Linux 应用程序中相同字体不存在的错误和限制。

(这种悲伤的状态被 matplotlib 的默认配置中的所有硬编码字体名称隐藏,一旦你开始尝试更改它们,你就处于危险的境地)

于 2013-06-22T11:51:13.443 回答
1

唷,我把它写在 100 行以下,@nim 这也更详细地解释了它是多么危险,一些修改完全改变了字体属性和字体大小的行为。

先决条件:Matplotlib 和包含 ttf 字体文件 calibri.ttf 的脚本同级字体文件夹

但这就是我为你准备的复活节彩蛋:

import os
import matplotlib
import matplotlib.pyplot as plt
import matplotlib.font_manager as fm
from matplotlib import ft2font
from matplotlib.font_manager import ttfFontProperty

__font_dir__ = os.path.join(os.path.dirname(__file__),"font")
fpath = os.path.join(__font_dir__,'calibri.ttf')

font = ft2font.FT2Font(fpath)
fprop = fm.FontProperties(fname=fpath)

ttfFontProp = ttfFontProperty(font)

fontsize=18

fontprop = fm.FontProperties(family='sans-serif',
                            #name=ap.fontprop.name,
                            fname=ttfFontProp.fname,
                            size=fontsize,
                            stretch=ttfFontProp.stretch,
                            style=ttfFontProp.style,
                            variant=ttfFontProp.variant,
                            weight=ttfFontProp.weight)

matplotlib.rcParams.update({'font.size': fontsize,
                        'font.family': 'sans-serif'})

fig, axis = plt.subplots()

axis.set_title('Text in a cool font',fontsize=fontsize,fontproperties=fontprop)

ax_right = axis.twinx()

axis.set_xlabel("some Unit",fontsize=fontsize,fontproperties=fontprop)

leftAxesName,rightAxesName = "left Unit", "right Unit"

axis.set_ylabel(leftAxesName,fontsize=fontsize,fontproperties=fontprop)
if rightAxesName:
    ax_right.set_ylabel(rightAxesName,fontsize=fontsize,fontproperties=fontprop)

for xLabel in axis.get_xticklabels():
    xLabel.set_fontproperties(fontprop)
    xLabel.set_fontsize(fontsize)

for yLabel in axis.get_yticklabels():
    yLabel.set_fontproperties(fontprop)
    yLabel.set_fontsize(fontsize)    

yTickLabelLeft = ax_right.get_yticklabels()

for yLabel in yTickLabelLeft:
    yLabel.set_fontproperties(fontprop)
    yLabel.set_fontsize(fontsize)

axis.plot([0,1],[0,1],label="test")

nrow,ncol=1,1
handels,labels= axis.get_legend_handles_labels()

propsLeft=axis.properties()

propsRight=ax_right.properties()

print(propsLeft['title'],propsLeft['xlabel'],propsLeft['ylabel'])
print(propsRight['ylabel'])

fig.set_tight_layout({'rect': [0, 0, 1, 0.95], 'pad': 0.05, 'h_pad': 1.5})
fig.tight_layout()
fig.set_alpha(True)

leg_fig = plt.figure()

leg = leg_fig.legend(handels, labels, #labels = tuple(bar_names)
   ncol=ncol, mode=None, 
   borderaxespad=0.,
   loc='center',        # the location of the legend handles
   handleheight=None,   # the height of the legend handles
   #fontsize=9,         # prop beats fontsize
   markerscale=None,
   frameon=False,
   prop=fontprop)

plt.show()
于 2017-04-10T14:01:43.007 回答