메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
텍스트 상자 스타일 지정 #
이 예제는 bbox 매개변수 를 사용하여 텍스트 상자의 스타일을 지정하는 방법을 보여줍니다 .
import matplotlib.pyplot as plt
plt.text(0.6, 0.7, "eggs", size=50, rotation=30.,
ha="center", va="center",
bbox=dict(boxstyle="round",
ec=(1., 0.5, 0.5),
fc=(1., 0.8, 0.8),
)
)
plt.text(0.55, 0.6, "spam", size=50, rotation=-25.,
ha="right", va="top",
bbox=dict(boxstyle="square",
ec=(1., 0.5, 0.5),
fc=(1., 0.8, 0.8),
)
)
plt.show()