Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Message from discussion Possible bug in Mac Distiller's charpath?

Path: g2news1.google.com!postnews.google.com!s8g2000prg.googlegroups.com!not-for-mail
From: "abed...@hotmail.com" <abed...@hotmail.com>
Newsgroups: comp.lang.postscript
Subject: Re: Possible bug in Mac Distiller's charpath?
Date: Mon, 18 Feb 2008 14:28:54 -0800 (PST)
Organization: http://groups.google.com
Lines: 43
Message-ID: <15e73aef-f645-43d2-b641-93ef31ff75ab@s8g2000prg.googlegroups.com>
References: <37669734-637b-404b-8da0-20eb2020eb61@q70g2000hsb.googlegroups.com>
NNTP-Posting-Host: 13.12.254.95
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
X-Trace: posting.google.com 1203373734 10750 127.0.0.1 (18 Feb 2008 22:28:54 GMT)
X-Complaints-To: groups-abuse@google.com
NNTP-Posting-Date: Mon, 18 Feb 2008 22:28:54 +0000 (UTC)
Complaints-To: groups-abuse@google.com
Injection-Info: s8g2000prg.googlegroups.com; posting-host=13.12.254.95; 
	posting-account=LO4wGwoAAACGJEWaApKW09SbG9Q-4ASr
User-Agent: G2/1.0
X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.12) 
	Gecko/20071019 Fedora/1.5.0.12-5.fc6 Firefox/1.5.0.12,gzip(gfe),gzip(gfe)

On Feb 16, 6:17 pm, jdaw1 <jdawise...@gmail.com> wrote:
> Please consider the following code, also available atwww.jdawiseman.com/papers/bugs/20080216_charpath.ps
> %!
>
> % Julian D. A. Wiseman, 16th February 2008,www.jdawiseman.com
>
> /FontSize 100 def
> /Times-Roman FontSize selectfont
> 0 setgray  0.24 setlinewidth  1 setlinecap  1 setlinejoin  [] 0
> setdash
>
> 72 72 FontSize 6 mul add moveto
> (0) true charpath
> (2) true charpath
> stroke
>
> 72 72 FontSize 4.5 mul add moveto
> FontSize 2 div FontSize rlineto  FontSize 2 div FontSize neg rlineto
> stroke
>
> 72 72 FontSize 3 mul add moveto
> (0) true charpath
> FontSize 2 div FontSize rlineto  FontSize 2 div FontSize neg rlineto
> (2) true charpath
> stroke
>
> showpage
>
> GhostScript correctly outputswww.jdawiseman.com/papers/bugs/20080216_charpath_Ghostscript.pdf
>
> But Mac Distiller (Professional, 8.1.0, 10/23/06) outputswww.jdawiseman.com/papers/bugs/20080216_charpath_MacDistiller.pdf
> which is missing the lines drawn by the two linetos (though not the
> positioning affect). Mac Preview is very similar to the Distiller:www.jdawiseman.com/papers/bugs/20080216_charpath_Preview.pdf
>
> -- Please, am I doing something wrong?
> -- Please, is there a workaround?
> -- How can I nag Adobe to fix it? (The bug-submission page on Adobe
> doesn't work!)

Try a string false charpath. False is for stroking and true
is for filling or clipping.

Ed