summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/comprehensive/source/unicode2eps.pe
blob: c4d06e7c2b3c9b05c766428132092e274992c501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
##################################################
# Extract characters from a font as EPS graphics #
# By Scott Pakin <scott+clsl@pakin.org>          #
##################################################

# Usage: fontforge -script <fontname> [<char#> ...]
Open($1)
shift
if ($argc == 1)
  Select(0x0000, 0xFFFF)
else
  slots = $selection
  i = 0
  while (i < $argc - 1)
    slots[Strtol($argv[i + 1], 0)] = 1
    i++
  endloop
  Select(slots)
endif
Export("u%U.eps")