python pillow模块库图像处理函数介绍: 例如: 构建图像 Image.open(fp, mode =’r’ ):打开图片文件,返回一个Image对象 fp:图片路径 mode:模式。如果给出,必须是r from PIL import Image im = Image.open(path)