python-PIL 图像基本操作

from PIL import Image

打开并显示一幅图像

im=Image.open(‘lena.jpg’)
im.show()

转换成灰度图像

img=im.convert(‘L’)
img.show()

创建缩略图

im.thumbnail((64,64))
im.show()

取图像的一部分并选择180度然后在粘贴在图像上

im=Image.open(‘lena.jpg’)
box=(32,32,64,64)
region=im.crop(box)
region.show()
region=region.transpose(Image.ROTATE_180)
im.paste(region,box)
im.show()

调整图像尺寸

out=im.resize((64,64))
out.show()

旋转图像

out1=im.rotate(45)
out1.show()

你可能感兴趣的:(python)