aboutsummaryrefslogtreecommitdiff
path: root/test/upscaler/bitmap-ball.py
blob: 85474f1d4d2f7b776e5c659e52135f3111ccae92 (plain)
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
#!/bin/python3

from PIL import Image
import sys

# return array of 12-bit color values (0bRRRGGGBBB)
def pixeldata():
  image = Image.open(sys.argv[-1]) # use last argument as input image file
  pixels = image.load()
  pixarr = []
  w,h = image.size
  for x in range(w):
    for y in range(h):
      color = pixels[x, y]
      crushed_color = ((color[0] >> 4) << 8 | (color[1] >> 4) << 4 | (color[2] >> 4) << 0)
      pixarr.append(crushed_color)
  return pixarr

if __name__ == "__main__":
  # get array of 12-bit pixels
  pixels = pixeldata()
  # coe file header
  print("memory_initialization_radix=16;\nmemory_initialization_vector=", end='')
  # format pixel value as 12-bit hexadecimal with padding seperated by comma and space
  formatted_pixels = ','.join([f"{hex(c)[2:].zfill(3)}" for c in pixels])
  print(f"{formatted_pixels};")