-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathtv_snow.py
executable file
·53 lines (40 loc) · 1.45 KB
/
tv_snow.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2014-18 Richard Hull and contributors
# See LICENSE.rst for details.
# PYTHON_ARGCOMPLETE_OK
"""
Example image-blitting.
"""
import struct
import random
from demo_opts import get_device
from luma.core.render import canvas
from PIL import Image, ImageDraw
device = get_device()
size = (60, 30)
# Calc offset to center text vertically and horizontally
offset = ((device.width - size[0]) // 2, (device.height - size[1]) // 2)
shadow_offset = (offset[0] + 1, offset[1] + 1)
def snow():
data = [random.randint(0, 0xFFFFFF)
for _ in range(device.width * device.height)]
packed = struct.pack('i' * len(data), *data)
background = Image.frombytes("RGBA", device.size, packed)
draw = ImageDraw.Draw(background)
draw.multiline_text(shadow_offset, "Please do\nnot adjust\nyour set", fill="black", align="center", spacing=-1)
draw.multiline_text(offset, "Please do\nnot adjust\nyour set", fill="white", align="center", spacing=-1)
return background.convert(device.mode)
def main():
with canvas(device) as draw:
draw.multiline_text(offset, "Please do\nnot adjust\nyour set", fill="white", align="center", spacing=-1)
images = [snow() for _ in range(20)]
while True:
random.shuffle(images)
for background in images:
device.display(background)
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
pass