华丽的文本框演示
首先看看演示结果:
实现代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import matplotlib.pyplot as plt
plt.text( 0.8 , 0.5 , "python" , 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.75 , 0.6 , "www.zyiz.net" , size = 50 , rotation = - 30. ,
ha = "right" , va = "top" ,
bbox = dict (boxstyle = "square" ,
ec = ( 1. , 0.5 , 0.5 ),
fc = ( 1. , 0.8 , 0.8 ),
)
)
plt.draw()
plt.show()
|
总结
以上就是本文关于Python+matplotlib实现华丽的文本框演示代码的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!
原文链接:https://matplotlib.org/index.html