現在、PILはPNG8のフルアルファをサポートしていないようです。
読み取り専用のサポートのためにここにパッチがあります:http://mail.python.org/pipermail/image-sig/2010-October/006533.html
あなたがいたずらを感じているならば、あなたは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')
出典
2010-11-20 11:14:59
adw
@Kyle:あなたは 'input.png'を投稿するだろうし、 'output.png'?私は問題を再現していないようです。 – unutbu
私は敏感なものを "redact"するためにファイルを編集し、再保存されたイメージはうまくいきました。だから私はinput.pngが8ビットのPNGであることに気がつきました。そして、私はそれがWebグラフィックスの外ではまれであると考えて、それを考慮に入れるのは多すぎると思う。 –
'.png'形式の風味は' input.png'です - それはどの形式ですか? – martineau