chunk模块用于读取TIFF格式的文件,打开应该使用二进制模式 TIFF 标签图像文件格式 import chunk import chunk f=open('E:\\test.tiff','rb') print(type(f)) html=chunk.Chunk(f) print(html.getname()) print(html.getsize()) help('chunk') Help on module chunk: NAME chunk - Simple class to read…