Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: Helge Blischke Newsgroups: comp.lang.postscript Subject: Re: Fonts Followup-To: comp.lang.postscript Date: Tue, 17 Jan 2012 15:21:09 +0100 Lines: 36 Message-ID: <9nleg9F2aeU1@mid.individual.net> References: <4f156125$0$5055$ba620e4c@news.skynet.be> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit X-Trace: individual.net sy3aTSYJu59mSh7x7iESRgle8dnjEaupJwa5NuWXFGFz3aYcYU Cancel-Lock: sha1:wc4lCZ6pgkBsEhH+fiuhdUwMP+8= User-Agent: KNode/0.99.01 Xref: x330-a1.tempe.blueboxinc.net comp.lang.postscript:570 Alain Reymond wrote: > Hello, > > I have another question! > > We define fonts this way : > /Arial findfont > 0 dict copy begin > /Encoding pc-850encoding def > /MyArial850 /FontName def > currentdict end > dup /FID undef > /MyArial850 exch definefont pop > > and then use MyArial850 in our ps code. > > This works with our Kyocera. But our Canon printer does not know Arial. > It has ArialMT ? Which makes that we can't indifferently send a ps on > either printers. We have to generate for Kyocera or for Canon. > > Is there a postcript sequence of instructions to tell the printer that > Arial and ArialMT are the same ? > > Regards, > > Alain In the setup section, insert something like the following: product (Kyocera) search {pop pop pop /Arial /ArialMT def} {pop}ifelse Helge