mirror of https://github.com/ocornut/imgui
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
469 B
Plaintext
18 lines
469 B
Plaintext
# Usage: fontforge.exe -script ProggyVector-ExtractScript.txt
|
|
Open("ProggyVector-Regular.ttf")
|
|
SelectMore(0x20,0xFF)
|
|
SelectMore(0x20AC) # Euro sign
|
|
SelectInvert()
|
|
DetachAndRemoveGlyphs()
|
|
SelectAll()
|
|
RemoveOverlap()
|
|
Simplify()
|
|
i=0
|
|
while (i < 23)
|
|
SetTTFName(0x409,i,"")
|
|
i=i+1
|
|
endloop
|
|
SetFontNames(".",".",".",".",".",".")
|
|
Generate("ProggyVector-minimal.ttf")
|
|
# At this point you can use binary_to_compressed_c.exe -u8 ProggyVector-minimal.ttf proggy_vector_minimal_ttf
|