python小练习①
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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小练习①的主要内容,如果未能解决你的问题,请参考以下文章