Open
Description
The "Load Image" node opens an image file here:
Line 1460 in 2de3b69
and I think we should close it using img.close()
before leaving the function.
This will release the handle of the file and allow other processes to access the image file. It's not critical but it feels better to do it, right?
P.S. I noticed this while trying to delete the image file in a later node. But this is not related to the issue since I have created special ImageLoader as well.