2022-03-17 20:08:26 +01:00
|
|
|
# The special font is used for the symbols of some keys. It is built from SVG
|
|
|
|
# files, one for each glyph.
|
2022-03-18 12:24:29 +01:00
|
|
|
New()
|
2022-03-17 20:08:26 +01:00
|
|
|
|
|
|
|
# Imports glyphs, file name is position in the font.
|
2022-04-24 20:52:36 +02:00
|
|
|
i = 1
|
2022-03-17 20:08:26 +01:00
|
|
|
while (i < $argc)
|
2022-03-18 12:24:29 +01:00
|
|
|
Select(Strtol($argv[i]:t:r, 16))
|
2022-03-24 23:55:20 +01:00
|
|
|
Import($argv[i], 0, 0, 4.0, 0.1)
|
2022-03-18 17:31:23 +01:00
|
|
|
AutoWidth(150)
|
2022-03-17 20:08:26 +01:00
|
|
|
i++
|
|
|
|
endloop
|
|
|
|
|
2022-04-24 20:52:36 +02:00
|
|
|
Generate("result.ttf")
|