Re: Filling a Bezier path with a texture
Re: Filling a Bezier path with a texture
- Subject: Re: Filling a Bezier path with a texture
- From: Graham Cox <email@hidden>
- Date: Wed, 27 May 2009 13:09:18 +1000
On 27/05/2009, at 1:02 PM, Dave Keck wrote:
NSColor *color = [NSColor colorWithPatternImage: patternImage];
[[NSGraphicsContext currentContext] saveGraphicsState];
[path addClip];
[color set];
NSRectFill([self bounds]);
[[NSGraphicsContext currentContext] restoreGraphicsState];
Or simpler:
[[NSColor colorWithPatternImage:patternImage] set];
[path fill];
--Graham
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden