This paper is finally updated at 1163 Days ago, , The information may have developed or changed .
Put your QQ Head portrait ( Or micro blog avatar ) Add a red number to the top right corner , It is similar to the prompt effect of the amount of unread information on wechat . Similar to the effect in the picture
from PIL import Image, ImageDraw, ImageFont
iconPath=r"F:\ Study \ Mobile Internet APP\APP Icon \bf181022.png"
icon=Image.open(iconPath,'r')
image=Image.new("RGBA",(icon.size[0]+100,icon.size[1]+100))
image.paste(icon,(0,100))
draw=ImageDraw.Draw(image)
draw.ellipse([icon.size[0]-100,5,icon.size[0]+100,205],"red")
userFont=ImageFont.truetype('simsun.ttc',100)
draw.text([icon.size[0]-50,55],u'99','white',font=userFont)
image.save(r"temp/out.png","PNG")
Post Views: 366