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()
|
2023-08-02 20:39:37 +02:00
|
|
|
Reencode("unicode")
|
2022-03-17 20:08:26 +01:00
|
|
|
|
2023-06-03 21:03:05 +02:00
|
|
|
# Imports glyphs, first argument is file name for the generated font
|
|
|
|
i = 2
|
2022-03-17 20:08:26 +01:00
|
|
|
while (i < $argc)
|
2023-08-02 20:39:37 +02:00
|
|
|
Select(Strtol($argv[i]:t:r, 16) + 0xE000)
|
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
|
|
|
|
|
2023-06-03 21:03:05 +02:00
|
|
|
Generate($argv[1])
|