fix(legacy): cleanup bitmaps, use 1-bit PNG, update generate script
Before Width: | Height: | Size: 877 B After Width: | Height: | Size: 79 B |
Before Width: | Height: | Size: 844 B After Width: | Height: | Size: 81 B |
Before Width: | Height: | Size: 121 B After Width: | Height: | Size: 85 B |
Before Width: | Height: | Size: 112 B After Width: | Height: | Size: 83 B |
Before Width: | Height: | Size: 129 B After Width: | Height: | Size: 95 B |
Before Width: | Height: | Size: 125 B After Width: | Height: | Size: 91 B |
Before Width: | Height: | Size: 137 B After Width: | Height: | Size: 100 B |
Before Width: | Height: | Size: 882 B After Width: | Height: | Size: 90 B |
Before Width: | Height: | Size: 133 B After Width: | Height: | Size: 95 B |
Before Width: | Height: | Size: 127 B After Width: | Height: | Size: 92 B |
Before Width: | Height: | Size: 125 B After Width: | Height: | Size: 87 B |
Before Width: | Height: | Size: 132 B After Width: | Height: | Size: 95 B |
Before Width: | Height: | Size: 301 B After Width: | Height: | Size: 179 B |
Before Width: | Height: | Size: 326 B After Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 293 B After Width: | Height: | Size: 181 B |
Before Width: | Height: | Size: 330 B After Width: | Height: | Size: 199 B |
@ -11,7 +11,7 @@ imgs = []
|
||||
|
||||
def encode_pixels(img):
|
||||
r = ""
|
||||
img = [(x[0] + x[1] + x[2] > 384 and "1" or "0") for x in img]
|
||||
img = ["1" if x >= 128 else "0" for x in img]
|
||||
for i in range(len(img) // 8):
|
||||
c = "".join(img[i * 8 : i * 8 + 8])
|
||||
r += "0x%02x, " % int(c, 2)
|
||||
|
Before Width: | Height: | Size: 152 B After Width: | Height: | Size: 105 B |
Before Width: | Height: | Size: 138 B After Width: | Height: | Size: 98 B |
Before Width: | Height: | Size: 167 B After Width: | Height: | Size: 111 B |
Before Width: | Height: | Size: 153 B After Width: | Height: | Size: 107 B |
Before Width: | Height: | Size: 138 B After Width: | Height: | Size: 98 B |
Before Width: | Height: | Size: 280 B After Width: | Height: | Size: 155 B |
Before Width: | Height: | Size: 312 B After Width: | Height: | Size: 174 B |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 148 B |
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 144 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 151 B |