将你的 QQ 头像(或者微博头像)右上角加上红色的数字,类似于微信未读信息数量那种提示效果。 类似于图中效果
sample.png代码如下:
import matplotlib.pyplot as plt
fig = plt.imread(r'F:\picture\1.jpg')
fig_info = fig.shape
x = 0.9 * fig_info[1]
y = 0.1 * fig_info[0]
plt.subplot(211)
plt.imshow(fig)
plt.subplot(212)
plt.imshow(fig)
plt.text(x, y, "4", color='red', size='%d' % int(fig_info[0] * 0.02))
plt.show()
图片.png
网友评论