Python Imaging,如何将图像量化为16位深度?

时间:2010-12-03 12:04:52

标签: python python-imaging-library imaging

我想使用Python Imaging将24位图像量化为16位色深。

PIL用于提供im.quantize(颜色,**选项)的方法,但是已经不推荐使用out = im.convert(“P”,palette = Image.ADAPTIVE,colors = 256)

不幸的是256是im.convert()将量化的最大颜色数量(仅限8位)。

如何使用PIL(或类似的)将24位图像量化为16位?

感谢

1 个答案:

答案 0 :(得分:3)

您可能希望将图像转换为numpy数组,执行量化,然后转换回PIL。

numpy中有模块可以转换为PIL图像或从PIL图像转换。