[go: up one dir, main page]

File: sfd2condensed.ff

package info (click to toggle)
ttf-ocr-a 1.0-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 760 kB
  • ctags: 1
  • sloc: makefile: 41
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