forked from samuelngs/apple-emoji-ttf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerate_emoji_placeholders.py
More file actions
105 lines (82 loc) · 2.56 KB
/
Copy pathgenerate_emoji_placeholders.py
File metadata and controls
105 lines (82 loc) · 2.56 KB
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
from __future__ import print_function
import os
from os import path
import subprocess
OUTPUT_DIR = "/tmp/placeholder_emoji"
def generate_image(name, text):
print(name, text.replace("\n", "_"))
subprocess.check_call(
["convert", "-size", "100x100", "label:%s" % text, "%s/%s" % (OUTPUT_DIR, name)]
)
def is_color_patch(cp):
return cp >= 0x1F3FB and cp <= 0x1F3FF
def has_color_patch(values):
for v in values:
if is_color_patch(v):
return True
return False
def regional_to_ascii(cp):
return unichr(ord("A") + cp - 0x1F1E6)
def is_flag_sequence(values):
if len(values) != 2:
return False
for v in values:
v -= 0x1F1E6
if v < 0 or v > 25:
return False
return True
def is_keycap_sequence(values):
return len(values) == 2 and values[1] == 0x20E3
def get_keycap_text(values):
return "-%c-" % unichr(values[0]) # convert gags on '['
char_map = {
0x1F468: "M",
0x1F469: "W",
0x1F466: "B",
0x1F467: "G",
0x2764: "H", # heavy black heart, no var sel
0x1F48B: "K", # kiss mark
0x200D: "-", # zwj placeholder
0xFE0F: "-", # variation selector placeholder
0x1F441: "I", # Eye
0x1F5E8: "W", # 'witness' (left speech bubble)
}
def get_combining_text(values):
chars = []
for v in values:
char = char_map.get(v, None)
if not char:
return None
if char != "-":
chars.append(char)
return "".join(chars)
if not path.isdir(OUTPUT_DIR):
os.makedirs(OUTPUT_DIR)
with open("sequences.txt", "r") as f:
for seq in f:
seq = seq.strip()
text = None
values = [int(code, 16) for code in seq.split("_")]
if len(values) == 1:
val = values[0]
text = "%04X" % val # ensure upper case format
elif is_flag_sequence(values):
text = "".join(regional_to_ascii(cp) for cp in values)
elif has_color_patch(values):
print("skipping color patch sequence %s" % seq)
elif is_keycap_sequence(values):
text = get_keycap_text(values)
else:
text = get_combining_text(values)
if not text:
print("missing %s" % seq)
if text:
if len(text) > 3:
if len(text) == 4:
hi = text[:2]
lo = text[2:]
else:
hi = text[:-3]
lo = text[-3:]
text = "%s\n%s" % (hi, lo)
generate_image("emoji_u%s.png" % seq, text)