我想使用 Python Imaging 将 24 位图像量化为 16 位色深。
PIL 用于提供一种方法 im.quantize(colors, **options) 但是这已被弃用 out = im.convert("P", palette=Image.ADAPTIVE, colors=256)
不幸的是,256 是 im.convert() 将量化到的最大颜色数(仅 8 位)。
如何使用 PIL(或类似方法)将 24 位图像量化为 16 位?
谢谢
我想使用 Python Imaging 将 24 位图像量化为 16 位色深。
PIL 用于提供一种方法 im.quantize(colors, **options) 但是这已被弃用 out = im.convert("P", palette=Image.ADAPTIVE, colors=256)
不幸的是,256 是 im.convert() 将量化到的最大颜色数(仅 8 位)。
如何使用 PIL(或类似方法)将 24 位图像量化为 16 位?
谢谢