美文网首页
show-me-the-code 000

show-me-the-code 000

作者: tulingfeng | 来源:发表于2018-01-30 10:28 被阅读0次

    # -*- coding: utf-8 -*-

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

    _author_='tutu'

    from PILimport Image,ImageFont,ImageDraw

    import random

    snum=str(random.randint(1,99))

    im=Image.open('wly.jpg')

    w,h=im.size

    wDraw=0.9*w

    hDraw=0.1*w     #displace

    font=ImageFont.truetype('C:/Windows/Fonts/arial.ttf',80)

    draw=ImageDraw.Draw(im)

    draw.text((wDraw,hDraw),snum,font=font,fill=(255,33,33))

    im.save('wly_1.jpg','jpeg')

    相关文章

      网友评论

          本文标题:show-me-the-code 000

          本文链接:https://www.haomeiwen.com/subject/tsbqzxtx.html