如果您使用
bytearrays,则必须使用
io.BytesIO。您也可以直接将文件读取到
bytearray。
import osimport ioimport PIL.Image as Imagefrom array import arraydef readimage(path): count = os.stat(path).st_size / 2 with open(path, "rb") as f: return bytearray(f.read())bytes = readimage(path+extension)image = Image.open(io.BytesIO(bytes))image.save(savepath)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)