我尝试打开一个每像素 16 位和多波段的 tif 图像,以将其转换为原始文件。我将 PIL 与下一个命令一起使用,i = Image.open('image.tif')
并且在我使用rawData = i.tostring()
. 它不适用于多波段 tif 图像。
错误是:
File "C:\Python27\lib\site-packages\PIL\Image.py", line 1980, in open
raise IOError("cannot identify image file")
IOError: cannot identify image file
该目录包含该文件。
我必须怎么做?