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: Dave Keck <email@hidden>
- Date: Tue, 26 May 2009 17:02:52 -1000
I'd do something that would look vaguely like this:
NSColor *color = [NSColor colorWithPatternImage: patternImage];
[[NSGraphicsContext currentContext] saveGraphicsState];
[path addClip];
[color set];
NSRectFill([self bounds]);
[[NSGraphicsContext currentContext] restoreGraphicsState];
Disclaimer: typed in mail, etc.
David
_______________________________________________
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