File: sfd2condensed.ff

package info (click to toggle)
fonts-ocr-a 1.0-10
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 792 kB
  • sloc: xml: 19; sh: 9; makefile: 8
file content (17 lines) | stat: -rw-r--r-- 374 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/fontforge
if ($argc > 1)
    Open($argv[1])
    ttfile = $fontname + "Condensed"
    Print("Making ",ttfile)
    SetFontNames(ttfile,ttfile,$fontname+" Condensed","Condensed")
    SelectAll()
    if ($argc > 2)
	Scale($2,100)
    else
	Scale(80,100)
    endif
    Save(ttfile+".sfd")
    Close()
else
    Print("Usage: $0 font.sfd [condense, default 80%]")
endif