-
Notifications
You must be signed in to change notification settings - Fork 2
/
test.py
65 lines (44 loc) · 2.26 KB
/
test.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
from PIL import Image, ImageFont, ImageDraw
jobs = {'Страны': True, 'Фикс ферм и видеокарт': True,
'Новые префиксы': True,
'Функция автоматическая оплата налога с баланса банка': True,
'Создание личных промокодов': True, 'Гривны / Евро': True,
'Топ по рефералам ': True, 'Игра камень-ножницы-бумага': True, 'Видеокарты продаются вместе с фермой': True,
'Префиксы будут повышать шанс выиграть в играх ': True, 'Игровые боссы': True,
'Магазин предметов': True, 'Скины': True}
background = Image.open("assets/background.jpg")
font = ImageFont.truetype("assets/font.ttf", 42)
font2 = ImageFont.truetype("assets/font.ttf", 62)
z = (0, 0, 0) # (0, 0, 0)
d = (255, 255, 255)
color = d
color2 = z
green, red = (0, 255, 0), (255, 0, 0)
poltora = (background.size[0] // 2, background.size[1] // 2)
def create_image():
source = background.copy()
draw = ImageDraw.Draw(source)
y = poltora[1] - poltora[1] // 2
text = list(jobs.keys())[3] + ' — В ПРОЦЕССЕ\n'
text1 = '\n'.join(i + f' — В ПРОЦЕССЕ\n' for i in jobs.keys())
w, h = font.getsize(text)[0] + 40, 785
coords = [(10, y-10), (w, h)]
draw.rounded_rectangle(coords, 20, (50, 50, 50))
for txt, status in jobs.items():
text = f'{txt} — '
x = 30
draw.text((x, y), text, color, font=font,
stroke_fill=color2, stroke_width=1, align='left')
x += font.getsize(text)[0]
colr = green if status else red
text = f'{"СДЕЛАНО" if status else "В ПРОЦЕССЕ..."}'
draw.text((x, y), text, colr, font=font,
stroke_fill=color2, stroke_width=1, align='left')
y += font.size
draw.text((1200, background.size[1]-70), f'{percent}% из 100% выполнено', font=font2)
source.draft('RGB', (1008, 756))
source.save('assets/output.jpg', 'JPEG', quality=100)
source.show('OutPut')
xd = sum(1 for i in jobs.items() if i[1])
percent = round((xd / len(jobs)) * 100)
create_image()