如何关闭图像?

时间:2010-06-28 19:03:04

标签: python python-imaging-library

我正在尝试获取图像文件,对其执行一些操作并将更改保存回原始文件。我遇到的问题是覆盖原始图像;似乎没有一种可靠的方法来释放filename上的句柄。

我需要将此内容保存回同一个文件,因为外部进程依赖于该文件名保持不变。

def do_post_processing(filename):
    image = Image.open(str(filename))
    try:
        new_image = optimalimage.trim(image)
    except ValueError as ex:
        # The image is a blank placeholder image.
        new_image = image.copy()
    new_image = optimalimage.rescale(new_image)
    new_image.save('tmp.tif')
    del image

    os.remove(str(filename))
    os.rename('tmp.tif', str(filename))

del image一直在工作,直到我添加了异常处理程序,我在其中制作了图像的副本。我还尝试访问了Image close()的{​​{1}}属性,但没有成功。

1 个答案:

答案 0 :(得分:16)

您可以为Image.open函数提供类文件对象而不是文件名。所以试试这个:

def do_post_processing(filename):
    with open(str(filename), 'rb') as f:
        image = Image.open(f)
        ...
        del new_image, image
    os.remove(str(filename))
    os.rename(...)