参考 http://c.biancheng.net/pillow/image-objects.html 做简单的图像处理 显示图片 from PIL import Imageim = Image.open("test.png")im.show() 创建图片 #使用颜色的十六进制格式im_1=Image.new(mode='RGB',(260,100),color="#ff0000")im_1.show() 图像处理