pil保存图片黑色_python PIL Image 图片处理的基础使用方法Tutorial (一)
一、Image的format、size、mode、show#不需要关注文件格式,PIL会自动处理im=Image.open("background.jpg")print(im.format,im.size,im.mode)#JPEG(2287,1080)RGB'''format指文件格式、size文件大小tuple(width,heigh)modeL黑白,RGB普通RGB,CMYK预压缩图片'''