Rumah > Artikel > pembangunan bahagian belakang > Python中pillow知识点学习
本文给大家通过一篇Python中pillow知识点学习的笔记内容让大家对pillow有一个学习方向的有一个认识,有兴趣的朋友学习下。
此系列意在记录于一些有趣的程序及对其的总结。
问题来源:
https://github.com/Yixiaohan/show-me-the-code
https://github.com/HT524/500LineorLess_CN
今天这个程序于一张图片中添加数字,类似于qq头像上的小红点,只不过这个是静态的。
首先使用的是pillow这个图像库。
总体思路是通过Image.open()打开图像,设置要绘制的信息的格式,ImageDraw.Draw()生成被修改的实例,再通过text()方法进行修改。
程序如下:
from PIL import Image, ImageDraw, ImageFont def pic_add_num(image): my_font = ImageFont.truetype(r"C:\windows\Fonts\simsun.ttc", size=40) color = "red" width, height = image.size position = (width-40, 0) draw = ImageDraw.Draw(image) draw.text(position, "99", font=my_font, fill=color) image.save("add_num.jpg") if __name__ == "__main__": img = Image.open("universe.jpg") pic_add_num(img)
Atas ialah kandungan terperinci Python中pillow知识点学习. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!