Python第三方库使用——PIL vs matplotlib

因为语法的简洁,造就了功能的强大,因为开源,全世界的顶尖程序员们(各个行业的)辛勤地无私地也较为容易地为python贡献各式各样的第三方的库,再因为安装的便捷,普及也较为容易。如此种种,造就了python纷繁的世界。

PIL:Python Image Library

重要模块及其成员函数

Image.fromarray()

顾名思义,将二维数组转换为图像。

from PIL import Image
import numpy as np

arr = (np.eye(200)*255).astype('uint8')
im = Image.fromarray(arr)
imrgb = Image.merge('RGB', (im, im, im))
imrgb.show()


Python第三方库使用——PIL vs matplotlib_第1张图片

你可能感兴趣的:(Python第三方库使用——PIL vs matplotlib)