Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- ubuntu
- Python
- pytorch
- paramiko
- Numpy
- windows forms
- pip
- OpenCV
- SSH
- 채보
- YOLO
- LIST
- Linux
- JSON
- 핑거스타일
- Docker
- VS Code
- 기타 연주
- error
- Visual Studio
- 명령어
- 오류
- pandas
- label
- C++
- 프로그래머스
- Selenium
- C#
- mysql
- C
Archives
- Today
- Total
기계는 거짓말하지 않는다
Python Matplotlib 폰트 확인, 적용 본문
matplotlib을 사용할 때 한글이 깨지는 경우가 있다.
import matplotlib.pyplot as plt
import numpy as np
a = np.linspace(1, 10, 20)
fig = plt.gcf()
fig.canvas.set_window_title('확인')
plt.plot(a)
plt.title("한글 확인")
plt.xlabel("엑스 라벨")
plt.ylabel("와이 라벨")
plt.show()
사용 가능한 폰트 확인
matplotlib.font_manager로 확인
import matplotlib.font_manager as fm
# list로 모든 폰트 확인
fl = [font.name for font in fm.fontManager.ttflist]
print(fl)
# 한 줄씩 모두 출력
for f in fm.fontManager.ttflist:
print(f.name)
# 지정한 폰트 이름만 확인
fl = [font.name for font in fm.fontManager.ttflist if 'Gulim' in font.name]
# 또는
for f in fm.fontManager.ttflist:
if 'Gulim' in f.name:
print(f.name)
폰트 적용
import matplotlib.pyplot as plt
import numpy as np
# 폰트 설정
plt.rcParams['font.family'] = 'New Gulim'
a = np.linspace(1, 10, 20)
fig = plt.gcf()
fig.canvas.set_window_title('확인')
plt.plot(a)
plt.title("한글 확인")
plt.xlabel("엑스 라벨")
plt.ylabel("와이 라벨")
plt.show()
'Python' 카테고리의 다른 글
Python Selenium 크롤링 창 숨기기 (0) | 2021.07.25 |
---|---|
Python Selenium WebDriver 사용법, 메서드 (0) | 2021.07.24 |
Python BeautifulSoup 사용법, 속성 (0) | 2021.07.20 |
Python Selenium, BeautifulSoup (0) | 2021.07.19 |
Python Crawling (0) | 2021.07.19 |
Comments