python

超轻量级php框架startmvc

Python中pillow知识点学习

更新时间:2020-05-31 09:30:01 作者:startmvc
此系列意在记录于一些有趣的程序及对其的总结。问题来源:https://github.com/Yixiaohan/show-me-th

此系列意在记录于一些有趣的程序及对其的总结。

问题来源:

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)

Python pillow