收到图像文件后,我无法阅读。
with open(fullpath, 'wb+') as f:
f.write(filevalue)
f.close()
try:
im = Image.open(fullpath, 'r')
im = im.resize((28, 28))
os.remove(fullpath)
im.save(fullpath, 'PNG')
except:
print 'Received non-image file, skipping...'
首先打开完整路径并写入收到的文件值,然后关闭文件。现在文件在磁盘上。
之后,我打开收到的文件。我已经检查过这个图像文件没有损坏,一个独立的python脚本可以用PIL Image类打开它。但是,如果我在接收后立即附加打开文件代码,则错误变为:
File xxxxxx.png could not be opened for reading
由于文件已写入磁盘,为什么我无法打开它?
答案 0 :(得分:0)
我制作了这个文件的另一个副本,并成功打开了它。这是一个临时解决方案,虽然有很多开销。即使我调用了f.close(),但是没有退出整个程序,似乎文件被锁定了。