Skip to content

Latest commit

 

History

History
56 lines (35 loc) · 861 Bytes

169.md

File metadata and controls

56 lines (35 loc) · 861 Bytes
@author jackzhenguo
@desc
@tag
@version 
@date 2020/03/07

图像处理包pillow

两行代码实现旋转和缩放图像

首先安装pillow:

pip install pillow

旋转图像下面图像45度:

In [1]: from PIL import Image
In [2]: im = Image.open('./img/plotly2.png')
In [4]: im.rotate(45).show()

旋转45度后的效果图

等比例缩放图像:

im.thumbnail((128,72),Image.ANTIALIAS)

缩放后的效果图:

过滤图像后的效果图:

from PIL import ImageFilter
im.filter(ImageFilter.CONTOUR).show()

[上一个例子](168.md) [下一个例子](170.md)