第 0000 题

将你的 QQ 头像(或者微博头像)右上角加上红色的数字,类似于微信未读信息数量那种提示效果。 类似于图中效果

第 0000 题_第1张图片
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()
第 0000 题_第2张图片
图片.png

你可能感兴趣的:(第 0000 题)