-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathcolors.py
executable file
·118 lines (98 loc) · 3.89 KB
/
colors.py
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2014-2023 Richard Hull and contributors
# See LICENSE.rst for details.
# PYTHON_ARGCOMPLETE_OK
"""
Color rendering demo.
"""
import math
import time
import random
from pathlib import Path
from demo_opts import get_device
from luma.core.render import canvas
from PIL import Image
def main():
img_path = str(Path(__file__).resolve().parent.joinpath('images', 'balloon.png'))
balloon = Image.open(img_path) \
.transform(device.size, Image.AFFINE, (1, 0, 0, 0, 1, 0), Image.BILINEAR) \
.convert(device.mode)
while True:
# Image display
device.display(balloon)
time.sleep(5)
# Cycle through some primary colours
for color in ["black", "white", "red", "orange", "yellow", "green", "blue", "indigo", "violet"]:
with canvas(device, dither=True) as draw:
draw.rectangle(device.bounding_box, fill=color)
# measure
left, top, right, bottom = draw.textbbox((0, 0), color)
size = right - left, bottom - top
# draw
left = (device.width - size[0]) // 2
top = (device.height - size[1]) // 2
right = left + size[0]
bottom = top + size[1]
draw.rectangle((left - 1, top, right, bottom), fill="black")
draw.text((left, top), text=color, fill="white")
time.sleep(3)
# Rainbow
w = 4
with canvas(device, dither=True) as draw:
for i in range(device.width // w):
r = int(math.sin(0.3 * i + 0) * 127) + 128
g = int(math.sin(0.3 * i + 2) * 127) + 128
b = int(math.sin(0.3 * i + 4) * 127) + 128
rgb = (r << 16) | (g << 8) | b
draw.rectangle((i * w, 0, (i + 1) * w, device.height), fill=rgb)
# measure
left, top, right, bottom = draw.textbbox((0, 0), "rainbow")
size = right - left, bottom - top
# draw
left = (device.width - size[0]) // 2
top = (device.height - size[1]) // 2
right = left + size[0]
bottom = top + size[1]
draw.rectangle((left - 1, top, right, bottom), fill="black")
draw.text((left, top), text="rainbow", fill="white")
time.sleep(5)
# Gradient
with canvas(device, dither=True) as draw:
for y in range(device.height):
for x in range(device.width):
r = int(min(x / (device.width / 256), 255))
g = int(min(y / (device.height / 256), 255))
b = 0
draw.point((x, y), fill=(r, g, b))
# measure
left, top, right, bottom = draw.textbbox((0, 0), "gradient")
size = right - left, bottom - top
# draw
left = (device.width - size[0]) // 2
top = (device.height - size[1]) // 2
right = left + size[0]
bottom = top + size[1]
draw.rectangle((left - 1, top, right, bottom), fill="black")
draw.text((left, top), text="gradient", fill="white")
time.sleep(5)
# Random blocks
w = device.width // 12
h = device.height // 8
for _ in range(40):
with canvas(device, dither=True) as draw:
for x in range(12):
for y in range(8):
color = random.randint(0, 2 ** 24)
left = x * w
right = (x + 1) * w
top = y * h
bottom = (y + 1) * h
draw.rectangle((left, top, right - 2, bottom - 2), fill=color)
time.sleep(0.25)
if __name__ == "__main__":
try:
device = get_device()
main()
except KeyboardInterrupt:
pass