20200128(pillow PIL图像处理库)

Posted bltstop

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20200128(pillow PIL图像处理库)相关的知识,希望对你有一定的参考价值。

用Python生成自己专属的手机春节壁纸

效果:

技术图片     到  技术图片

 

 准备工作:

需要用到python的第三方图像处理库: PIL(Python Image Library) 。

  • python 2.X : PIL 
  • python 3.X : pillow
 1 __author__ = MaZW
 2 # -*- coding:utf-8 -*-
 3 from PIL import Image,ImageDraw,ImageFont
 4 a = 小王小王
 5 font = ImageFont.truetype(simhei.ttf, 100) # 定义文本,黑体
 6 img = Image.open(底图.jpg)
 7 draw = ImageDraw.Draw(img) # 新建画布绘画对象
 8 
 9 draw.text((200,700),a,(0,0,0),font=font)
10 #在新建的对象上坐标(200,700)处开始画出黑色文本
11 img.show()
12 img.save(壁纸.jpg)

小结:

学了PIL中的核心类 Image:

  • save(filename,format) (保存指定格式的图像)

  • open(filename,mode) (打开一张图像)。

  • paste(region,box,mask) (将一个图像粘贴到另一个图像)

 

以上是关于20200128(pillow PIL图像处理库)的主要内容,如果未能解决你的问题,请参考以下文章

python如何安装pil库

PIL和Pillow

图像处理标准库pillow

python图像库PIL的完美替代品-Pillow

python中用Pillow库进行图片处理

Python图像处理库Pillow常用使用方法