2

我正在尝试在图像上添加 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')

这是给定的结果:

结果

预期结果:

预期结果

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

4

1 回答 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')
于 2019-02-22T07:16:50.233 回答