summaryrefslogtreecommitdiffstatshomepage
path: root/artwork/bgfx/chains/crt-geom/add_alpha.py
blob: 69fff62f3a618e2aa78f954106eda5b611922d70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""
Assumes the input RGB image subpixels are all either 0 or 255.
Counts the bright subpixels in the whole image. This should be divisible by 3.
Creates a uniform alpha channel containing 255 minus 1/3 of
the number of bright subpixels.
Writes the RGBA image to the output file.
"""
import sys
import numpy
import PIL
import PIL.Image

if len(sys.argv) != 3:
    print("usage: add_alpha.py in.png out.png")
    sys.exit(1)

img = PIL.Image.open(sys.argv[1])

arr = numpy.asarray(img)
count = (arr==255).sum()
assert count%3 == 0
count //= 3

alpha = arr[:,:,0,None]*0 + (255-count)

arr = numpy.concatenate((arr,alpha),axis=2)

# DEBUG
#print(arr)

out = PIL.Image.fromarray(arr)
out.save(sys.argv[2])