首页 > 代码库 > python小练习①

python小练习①

题目内容:

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

技术分享

#!usr/bin/env python
#_*_coding:utf-8_*_
from PIL import Image, ImageDraw, ImageFont
def add_num(image):
    draw = ImageDraw.Draw(img)
    myfont = ImageFont.truetype(C:\Users\Lenovo\Deskto\687474703a2f2f692e696d6775722e636f6d2f736732646b75592e706e673f31.png, size=40)
    fillcolor = "#ff0000"
    width, height = img.size
    draw.text((width-40, 0), 99, font=myfont, fill=fillcolor)
    img.save(result.jpg,jpeg)
    return 0

 

python小练习①