如何关闭在 Pillow 中打开的图像?
How do I close an image opened in Pillow?
我有一个 python 文件,其中导入了 Pillow 库。我可以用
打开图片
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()
如果您创建 PIL 对象,您将看到没有关闭方法。
from PIL import Image
img=Image.open("image.jpg")
dir(img)
['_Image__transformer', '_PngImageFile__idat', '__doc__', '__getattr__', '__init__', '__module__', '__repr__', '_copy', '_dump', '_expand', '_makeself', '_new', '_open', 'category', 'convert', 'copy', 'crop', 'decoderconfig', 'decodermaxblock', 'draft', 'filename', 'filter', 'format', 'format_description', 'fp', 'frombytes', 'fromstring', 'getbands', 'getbbox', 'getcolors', 'getdata', 'getextrema', 'getim', 'getpalette', 'getpixel', 'getprojection', 'histogram', 'im', 'info', 'load', 'load_end', 'load_prepare', 'load_read', 'map', 'mode', 'offset', 'palette', 'paste', 'png', 'point', 'putalpha', 'putdata', 'putpalette', 'putpixel', 'quantize', 'readonly', 'resize', 'rotate', 'save', 'seek', 'show', 'size', 'split', 'tell', 'text', 'thumbnail', 'tile', 'tobitmap', 'tobytes', 'tostring', 'transform', 'transpose', 'verify']
我有一个 python 文件,其中导入了 Pillow 库。我可以用
打开图片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()
如果您创建 PIL 对象,您将看到没有关闭方法。
from PIL import Image
img=Image.open("image.jpg")
dir(img)
['_Image__transformer', '_PngImageFile__idat', '__doc__', '__getattr__', '__init__', '__module__', '__repr__', '_copy', '_dump', '_expand', '_makeself', '_new', '_open', 'category', 'convert', 'copy', 'crop', 'decoderconfig', 'decodermaxblock', 'draft', 'filename', 'filter', 'format', 'format_description', 'fp', 'frombytes', 'fromstring', 'getbands', 'getbbox', 'getcolors', 'getdata', 'getextrema', 'getim', 'getpalette', 'getpixel', 'getprojection', 'histogram', 'im', 'info', 'load', 'load_end', 'load_prepare', 'load_read', 'map', 'mode', 'offset', 'palette', 'paste', 'png', 'point', 'putalpha', 'putdata', 'putpalette', 'putpixel', 'quantize', 'readonly', 'resize', 'rotate', 'save', 'seek', 'show', 'size', 'split', 'tell', 'text', 'thumbnail', 'tile', 'tobitmap', 'tobytes', 'tostring', 'transform', 'transpose', 'verify']