PIL - 防止预乘alpha通道

问题描述 投票:2回答:1

我正在尝试在图像上添加alpha通道,但结果不是预期的:

from PIL import Image
baseImage = Image.open('baseimage.png').convert('RGBA')
alphaImage = Image.open('alphaimage.png').convert('L')
baseImage.putalpha(alphaImage)
baseImage.save('newimage.tiff', 'TIFF', compression='tiff_adobe_deflate')

这是给定的结果:

result

预期结果:

expected result

是否可以防止预乘?我还尝试拆分乐队并将它们与新的alpha通道合并,但结果相同。

python python-imaging-library alpha premultiplied-alpha
1个回答
0
投票

您可以尝试手动反转预乘,如下所示:

from PIL import Image

baseImage = Image.open('baseIm.tiff').convert('RGBA')
alphaImage = Image.open('alphaIm.tiff').convert('L')

px = baseImage.load()
width, height = baseImage.size
for i in range(width):
    for j in range(height):
        if px[i, j][3] != 0:
            R = int(round(255.0 * px[i, j][0] / px[i, j][3]))
            G = int(round(255.0 * px[i, j][1] / px[i, j][3]))
            B = int(round(255.0 * px[i, j][2] / px[i, j][3]))
            a = px[i, j][3]

            px[i, j] = (R, G, B, a)


baseImage.putalpha(alphaImage)
baseImage.save('newIm.tiff', 'TIFF', compression='tiff_adobe_deflate')
© www.soinside.com 2019 - 2024. All rights reserved.