图片对象.save( fp )

功能

将画布保存为图片

参数

·fp:保存的文件名

返回值

例子

from PIL import Image

img = Image.new('RGB',(200,60),(70,130,180))
img.save('1.jpg')