我处理的档案图片非常大。在过去,我使用我使用Pillow的Python脚本处理了大型集合但中等大小的图像文件。但是,我现在有大量的16位RGB TIFF文件,平均每个文件150 MB,他们拒绝用Pillow打开。
from PIL import Image
filename = "FELAA011a.tif" # This is 144 mb tiff, with 16-bit RGB color
im = Image.open(filename)
我收到以下错误消息。
OSError: cannot identify image file 'FELAA011a.tif'
它在Photoshop中打开,MediaInfo显示它是一个tiff。哎呀,即使是Windows Photo Viewer也没有问题。
枕头的文件大小是否有上限可以处理?