-
-
Notifications
You must be signed in to change notification settings - Fork 417
/
Copy pathimage_generator.py
executable file
·56 lines (43 loc) · 2.31 KB
/
image_generator.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# =========================================
# image_generator.py
# Copyright 2017 Christopher Simpkins
# MIT License
# =========================================
import sys
import subprocess
# master font list (all fonts in gallery)
from utilities.fonts import font_list
# single fonts for font additions
# from utilities.font import font_list
for font in font_list:
font_name = font[0]
font_size = font[1]['size']
font_filename = font[1]['filename']
# create test pattern command
tp_command = """python render.py -t specimens/test-pattern.txt -l text -x 725 -b "#fcfdffff" -i ../images/gallery/""" + font_filename + """-STP.png -f '""" + font_name + """' -p 20"""
# create compact test pattern command
tpc_command = """python render.py -t specimens/test-pattern-compact.txt -l text -x 725 -b "#fcfdffff" -i ../images/gallery/""" + font_filename + """-STPC.png -f '""" + font_name + """' -p 20"""
# create dark syntax higlighter command
dh_command = """python render_highlight.py -t specimen/samplecode.c -x 725 -i ../images/gallery/""" + font_filename + """-dark.png -f '""" + font_name + """' -p 20 --style dark"""
# create light syntax highlighter command
lh_command = """python render_highlight.py -t specimen/samplecode.c -x 725 -i ../images/gallery/""" + font_filename + """-light.png -f '""" + font_name + """' -p 20 --style light"""
exit_code_tp = subprocess.call(tp_command, shell=True)
exit_code_tpc = subprocess.call(tpc_command, shell=True)
exit_code_dh = subprocess.call(dh_command, shell=True)
exit_code_lh = subprocess.call(lh_command, shell=True)
if exit_code_tp != 0:
sys.stderr.write("ERROR: Test pattern image error for the typeface '" + font_name + "'\n")
sys.exit(1)
elif exit_code_tpc != 0:
sys.stderr.write("ERROR: Compact test pattern image error for the typeface '" + font_name + "'\n")
sys.exit(1)
elif exit_code_dh != 0:
sys.stderr.write("ERROR: Dark highlighter image error for the typeface '" + font_name + "'\n")
sys.exit(1)
elif exit_code_lh != 0:
sys.stderr.write("ERROR: Light highlighter image error for the typeface '" + font_name + "'\n")
sys.exit(1)
else:
print(font_name + " image writes completed successfully")