Helvetica 글꼴은 Windows에 포함되어 있지 않으므로 사용하려면 .ttf 파일로 다운로드해야합니다. 그런 다음 다음과 같이 matplotlib를 참조 할 수 있습니다 ( "crm10.ttf"를 파일로 대체).
import os
from matplotlib import font_manager as fm, rcParams
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
fpath = os.path.join(rcParams["datapath"], "fonts/ttf/cmr10.ttf")
prop = fm.FontProperties(fname=fpath)
fname = os.path.split(fpath)[1]
ax.set_title('This is a special font: {}'.format(fname), fontproperties=prop)
ax.set_xlabel('This is the default font')
plt.show()
print(fpath)
.ttf를 어디에 넣어야하는지 보여줄 것입니다.
여기에서 출력을 볼 수 있습니다 :
https://matplotlib.org/gallery/api/font_file.html