我正在使用像Python3这样的Pillow==4.2.0
我只想在使用Image后释放内存。
from PIL import Image
f = open('http://test.com/test.jpg', 'rb')
image = Image.open(f)
image.load() # use a lot of memories
f.close()
image.close() # this doesn't release memory
f = None
image = None
我还尝试使用gc.collect()
。但效率不高。
你有解决方案吗?