Python PIllow 2.3.0将RGB-Image保存为TIF

时间:2014-02-05 13:10:44

标签: python python-imaging-library tiff pillow

我正在尝试将RGB-Image保存为TIF。虽然我很确定TIF可以处理RGB图像,但我无法使其正常工作。

import os
from PIL import Image

def main():
inFile=os.path.join("C:",os.sep,"temp","input.tif")

img=Image.open(inFile)
img=img.convert('RGB')

img.save(os.path.join("C:",os.sep,"temp","result.tif"),'TIFF')

但是,当我运行此代码时,我收到以下错误

IOError: encoder error -2 when writing image file

libtiff安装在W7-box上。

提前致谢

0 个答案:

没有答案