Pillowライブラリがインポートされたpythonファイルがあります。画像を開くには
Image.open(test.png)
しかし、その画像を閉じるにはどうすればよいですか? Pillowを使用して画像を編集するのではなく、単に画像を表示し、ユーザーが画像を保存または削除することを選択できるようにします。
Withブロックでそれを行うこともできます:
_with Image.open('test.png') as test_image:
do_things(test_image)
_
Image.close()
の使用例:
_test = Image.open('test.png')
test.close()
_