Re: Draw an NSImage and then erase some parts with NSBezierPath
Re: Draw an NSImage and then erase some parts with NSBezierPath
- Subject: Re: Draw an NSImage and then erase some parts with NSBezierPath
- From: Peter Burtis <email@hidden>
- Date: Mon, 26 May 2008 18:31:03 -0400
Your best bet is probably to create your bezier path first, and then
add it to the clipping region using [path addClip] . Then nothing
will draw within the circle.
- Pete
On May 26, 2008, at 5:39 PM, Michaël Villar wrote:
Look at my code. I use it, but it doesn't work.
It seems that NSBezierPath draw "transparent" color, not "clear the
color".
Le 26 mai 08 à 23:28, Scott Anguish a écrit :
what about clearColor?
On May 26, 2008, at 5:17 PM, Michaël Villar wrote:
Hi,
What i want is to clear an NSImage (not entirely) with some
NSBezierPath.
Here is my actual code :
[_image drawAtPoint:NSMakePoint(0, 0) fromRect:NSZeroRect
operation:NSCompositeCopy fraction:1.0];
NSBezierPath * path;
path = [NSBezierPath bezierPath];
[path appendBezierPathWithArcWithCenter:NSMakePoint(0,0) radius:8
startAngle:0 endAngle:360];
[[NSColor clearColor] set];
[path fill];
(If i use NSColor whiteColor, a white circle is drawed ;))
_______________________________________________
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:
@cocoadoc.com
This email sent to email@hidden
_______________________________________________
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:
@glossysheep.com
This email sent to email@hidden
_______________________________________________
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