Re: Transparent fill, opaque stroke
Re: Transparent fill, opaque stroke
- Subject: Re: Transparent fill, opaque stroke
- From: John Blackburn <email@hidden>
- Date: Mon, 22 Oct 2001 11:21:54 -0700
How about filling then stroking with different transparencies?
[thePath setAlphaValue:0.50]
[thePath fill];
[thePath setAlphaValue:1.0]
[thePath stroke];
John Blackburn
On Monday, October 22, 2001, at 10:19 AM, Ken Tabb wrote:
is it possible to draw a closed NSBezierPath such that its outline is
100% black opaque, but its fill (i.e. the inside of the loop) is 50%
transparent?