Cannot open .tif file due to 'cannot identify image file' error
问题 The file exists, path is correct, however I cannot load the .tif file. Please send help? Here's the code .. import os from PIL import Image name = 'PE-0D8-4m-10s-0001_00009_bbo.tif' THIS_FOLDER = os.path.dirname(os.path.abspath(__file__)) filename = os.path.join(THIS_FOLDER, name) image = Image.open(filename) And here's the traceback: Traceback (most recent call last): File "C:\Users\owner\MATLAB Drive\Python\imageload.py", line 23, in <module> image = Image.open(filename) File "C:\Users