Open hk1486 opened 3 years ago
import platform from matplotlib import font_manager, rc plt.rcParams['axes.unicode_minus'] = False
if platform.system() == 'Darwin': rc('font', family='appleGothic') elif platform.system() == 'Windows': path = "c:/Windows/Fonts/malgun.ttf" font_name = font_manager.FontProperties(fname=path).get_name() rc('font', family=font_name) else: print('Unknown system.... sorry.....')
----------------------------------------------------------------------------------------------------------------------------------------
import 하실 때, 위의 코드들도 같이 import해주시면 matplotlib 사용 시 한글폰트가 깨지는 오류를 잡을 수 있습니다!
matplotlib 한글 폰트 오류 해결
import platform from matplotlib import font_manager, rc plt.rcParams['axes.unicode_minus'] = False
if platform.system() == 'Darwin': rc('font', family='appleGothic') elif platform.system() == 'Windows': path = "c:/Windows/Fonts/malgun.ttf" font_name = font_manager.FontProperties(fname=path).get_name() rc('font', family=font_name) else: print('Unknown system.... sorry.....')
----------------------------------------------------------------------------------------------------------------------------------------
import 하실 때, 위의 코드들도 같이 import해주시면 matplotlib 사용 시 한글폰트가 깨지는 오류를 잡을 수 있습니다!