在matplotlib中,可以通过以下步骤将.otf文件中的字体设置为标准字体:
import matplotlib.pyplot as plt
from matplotlib import font_manager
font_path = 'path/to/your/font.otf'
font_prop = font_manager.FontProperties(fname=font_path)
plt.rcParams['font.family'] = font_prop.get_name()
其中,'path/to/your/font.otf'是你的.otf文件的路径。
plt.plot([1, 2, 3, 4, 5], [1, 4, 9, 16, 25])
plt.xlabel('X轴', fontproperties=font_prop)
plt.ylabel('Y轴', fontproperties=font_prop)
plt.title('示例图表', fontproperties=font_prop)
plt.show()
这样,你就成功地将.otf文件中的字体设置为标准字体,并在matplotlib图表中使用了。
对于更多关于matplotlib的信息,你可以参考腾讯云的相关产品Matplotlib介绍页面:Matplotlib产品介绍。
领取专属 10元无门槛券
手把手带您无忧上云