NO! Bugs!

Python_matplotlib 한글 깨짐 해결하기.

맨사설 2021. 8. 1. 11:26
728x90

 

한글 깨짐을 확인할 수 있다.

 

쉽고 간단하게 해결 방법을 제시하고자 한다.

 

NanumBarunGothic.ttf
3.99MB

해당 파일을 다운로드하고 원하는 곳에 위치시킨 뒤

import matplotlib.font_manager as fm
path = 'C:\\Users\\Desktop\\my room\\NanumBarunGothic.ttf'
fontprob=fm.FontProperties(fname=path,size=18)
########################################################################
plt.barh(index, v1)
plt.yticks(index, a, fontsize=13,fontproperties=fontprob, rotation=0)
plt.show()
# 선언문마다 fontproperties=fontprob를 선언하면 된다.

 

300x250

해결 끝!

 

728x90