Python PIL - 不透明度的PNG的所有区域> 0的不透明度设置为1

时间:2010-11-18 17:44:51

标签: python png python-imaging-library

想象一个带有黑色阴影的红色圆圈,在完全透明的背景上消失。当我用PIL打开并重新保存图像时,背景保持完全透明,但是阴影会变成全黑。

问题出现甚至没有改变图像:

image = Image.open('input.png')
image = image.convert('RGBA')
image.save('output.png')

我想让图像看起来与原始图像完全一致,以便我可以裁剪或调整它。

编辑:这是一个展示效果的PNG。它使用PNGNQ转换为8位。

alt text

使用上面的Python代码时,它如下所示:

alt text

2 个答案:

答案 0 :(得分:6)

看起来PIL目前不支持PNG8的完整alpha。

这里有一个补丁,只读支持:http://mail.python.org/pipermail/image-sig/2010-October/006533.html

如果你觉得顽皮,你可以monkeypatch PIL:

from PIL import Image, ImageFile, PngImagePlugin

def patched_chunk_tRNS(self, pos, len):
    i16 = PngImagePlugin.i16
    s = ImageFile._safe_read(self.fp, len)
    if self.im_mode == "P":
        self.im_info["transparency"] = map(ord, s)
    elif self.im_mode == "L":
        self.im_info["transparency"] = i16(s)
    elif self.im_mode == "RGB":
        self.im_info["transparency"] = i16(s), i16(s[2:]), i16(s[4:])
    return s
PngImagePlugin.PngStream.chunk_tRNS = patched_chunk_tRNS

def patched_load(self):
    if self.im and self.palette and self.palette.dirty:
        apply(self.im.putpalette, self.palette.getdata())
        self.palette.dirty = 0
        self.palette.rawmode = None
        try:
            trans = self.info["transparency"]
        except KeyError:
            self.palette.mode = "RGB"
        else:
            try:
                for i, a in enumerate(trans):
                    self.im.putpalettealpha(i, a)
            except TypeError:
                self.im.putpalettealpha(trans, 0)
            self.palette.mode = "RGBA"
    if self.im:
        return self.im.pixel_access(self.readonly)
Image.Image.load = patched_load

Image.open('kHrY6.png').convert('RGBA').save('kHrY6-out.png')

答案 1 :(得分:0)

我认为问题已经解决了,但您是否可能需要设置Alpha通道的深度?