python加粗字体_python画画加粗_Matplotlib'粗体'字体 - python

这篇博客介绍了如何在Python的Matplotlib库中设置加粗字体。通过示例代码展示了在图表中添加加粗标签的方法,但遇到了字体无法加粗的警告。解决方案是尝试使用`weight`参数替代`fontweight`。此外,还提及了与其他Python库如pingouin的相关内容。
摘要由CSDN通过智能技术生成

跟随this example:

import numpy as np

import matplotlib.pyplot as plt

fig = plt.figure()

for i, label in enumerate(('A', 'B', 'C', 'D')):

ax = fig.add_subplot(2,2,i+1)

ax.text(0.05, 0.95, label, transform=ax.transAxes,

fontsize=16, fontweight='bold', va='top')

plt.show()

我得到以下输出:

为什么我的标签重量正常,而文档显示此标签应该创建粗体字母A,B,C,D?

我也收到此警告:

Warning (from warnings module):

File "C:\Python27\lib\site-packages\matplotlib\font_manager.py", line 1228

UserWarning)

UserWarning: findfont: Could not match :family=Bitstream Vera Sans:style=italic:variant=normal:weight=bold:stretch=normal:size=x-small. Returning C:\Python27\lib\site-packages\matplotlib\mpl-data\fonts\ttf\Vera.ttf

<
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值