PIL是python平台的一个图像处理库,仅支持到python2.7;一群志愿者在PIL基础上创建了其派生库Pillow (PIL Fork),支持python3.x,同时加入了新的特性。在使用PIL的过程中,常使用的模块有Image、ImageDraw和ImageFont。
一个简单的代码示例:
#using PIL to open a image and draw a green rectangle
from PIL import Image, ImageDraw
im = Image.open('BlackClover.png')
draw = ImageDraw.Draw(im) #create a drawing object
draw.rectangle([(50,50),(200,250)],outline='green',width=3) #drawing a rectangle
del draw
im.show()
im.save('result.png','PNG')
官方文档:
PIL:http://www.effbot.org/zone/pil-index.htm
Pillow:https://pillow.readthedocs.io/en/5.2.x/reference/index.html
一个不错的代码实例博客:http://www.x-faded.com/2018/04/12/python图像操作的库pil%EF%BC%8C常用三个模块image%EF%BC%8Cimagedraw%EF%BC%8Cimagefont/