blob: 6e1f884447d4040775f77671d4c59fefdb06ade4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# $RCSfile$ $Revision$
# Convert .pfb fonts to .pfa format
if [ $# -eq 2 ]
then
outfile=$2
elif [ $# -eq 1 ]
then
outfile=`basename "$1" \.pfb`.pfa
else
echo "Usage: `basename $0` input.pfb [output.pfa]" 1>&2
exit 1
fi
exec gs -q -dNODISPLAY -- pfbtopfa.ps "$1" "$outfile"
|