Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder4.news.weretis.net!news.musoftware.de!wum.musoftware.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: Helge Blischke Newsgroups: comp.lang.postscript Subject: Re: unencoded characters in printer resident PS fonts Followup-To: comp.lang.postscript Date: Wed, 21 Sep 2011 19:20 +0200 Lines: 31 Message-ID: <9dukm1FpbrU1@mid.individual.net> References: <4e7a1248$0$6633$9b4e6d93@newsspool2.arcor-online.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit X-Trace: individual.net 3/vfBsyA2RLDLHdrElVxTg1W1I7aXt7B8F6veAqSUEIbbZV0ut Cancel-Lock: sha1:JXUT4EF9UE+KMagqXE/mg0+0UoI= User-Agent: KNode/0.99.01 Xref: x330-a1.tempe.blueboxinc.net comp.lang.postscript:338 Plamen Tanovski wrote: > Hi, > > is there a way to get all cararacters, especially the unencoded from > printer resident PS fonts? I tried prfont.ps from ghostscript, but it > shows only the encoded 256 slots. Then I reencoded the (not embedded) > font to LaTeX' T1 encoding and print it. The new characters are shown on > paper, which means, they are presented (unencoded) in the font. > > Some information: the printer is Lexmark C720 and the font is > StempelGaramond-Roman (easy to experiment, because there are metric > files for TeX available). > > best regards When using prfont.ps on a real PostScript printer, make sure the script contains the line /min { 2 copy gt { exch } if pop } bind def and then replace all occurences of .min by min Then it will print the unencoded characters. The reason is that ".min" is a Ghostscript extension but equivalent to the definition of min listed above. Helge