home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!snorkelwacker.mit.edu!ira.uka.de!smurf.sub.org!easix!bluemoon.GUN.de!georg
- From: georg@bluemoon.GUN.de (Georg Sassen)
- Newsgroups: comp.sys.amiga.applications
- Subject: Re: Help needed for POST
- Message-ID: <1396.1611921534@bluemoon.GUN.de>
- Date: Mon, 16 Nov 1992 14:34:09 GMT
- References: <1992Nov10.121703.1201@galaxy.gov.bc.ca> <1992Nov15.112503.6223@solaris.rz.tu-clausthal.de>
- Reply-To: georg@bluemoon.GUN.de (Georg Sassen)
- Organization: just me
- Content-Type: text/plain; charset=ISO-8859-1
- Content-Transfer-Encoding: 8bit
- Lines: 39
-
- In article <1992Nov15.112503.6223@solaris.rz.tu-clausthal.de> hiit@rz.tu-clausthal.de (Ibrahim Tertemiz) writes:
- >You can also take the fonts from GS for PC's . There is only one problem:
- >you have to rename them all :(
-
- Try this in your REXX: drawer (it uses makelink, for 1.3 systems you
- would have to modify it to use rename or copy). Start it after you
- have cd'ed to the directory where the ghostscript fonts and the
- Fontmap file are.
-
- ---------------------------cut------------------------------------
- /* link ugly ghostscript font names to real font names */
-
- x = open('mapfile','Fontmap','R')
-
- if x~=1 then do
- say "Where is the Fontmap file ?"
- exit 20
- end
-
- do while ~eof('mapfile')
- r = readln('mapfile')
- if left(r,1)~='/' then iterate
- r=translate(r,' ','09'x)
- parse var r '/'realname '('uglyname')'
- realname=strip(realname)
- uglyname=strip(uglyname)
- say realname uglyname
- address command 'MakeLink' realname uglyname
- end
-
- call close('mapfile')
- -------------------------------cut-------------------------------
-
-
- Georg
-
- --
- Georg Sa▀en, Dⁿsseldorf, Germany. Voice +49 211 255799, Fax +49 211 255798
-
-