python自带的图像处理模块。
from PIL import Image, ImageDraw
Image模块
Image.open(image_fn)
打开指定图像,对于彩色图像,不管图像格式是PNG、BMP或者JPG,返回的图像对象的模式为’RGB’,而对于灰度图像,不管图像格式为何,模式为’L’。
返回的是图像对象。
举例
from PIL import Image, ImageDraw
im = Image.open(img)
从数组中生成图像
Image.fromarray(obj)
Image对象
方法
im.convert()
转换图像对象的模式。
举例