【python小练】0000

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

from PIL import Image, ImageDraw, ImageFont

def add_num():
    im = Image.open('in.jpg')
    xsize, ysize = im.size
    draw = ImageDraw.Draw(im)
    font = ImageFont.truetype("arial.ttf", xsize // 3)
    draw.text((ysize // 5 * 4, 0), '3',    (250,128,114), font)
    im.save('out.jpg')

add_num()

           in.jpg                                      out.jpg

→→→→→

练习簿:https://github.com/Yixiaohan/show-me-the-code

原文地址:https://www.cnblogs.com/liez/p/5308095.html