标签: python image python-2.7 python-imaging-library
我尝试将RGB浮动图像保存到tiff文件,但我找不到办法。
from PIL import Image imgf = np.ones((5,5,3),dtype = np.float32) img_to_save = Image.fromarray(imgf) #fails.. img_to_save.save('img.tiff')
或者,matplotlib.pyplot imsave将我的浮动更改为整数。
我该怎么做?