• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Draw rounded NSImage
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Draw rounded NSImage


  • Subject: Draw rounded NSImage
  • From: John Wright <email@hidden>
  • Date: Fri, 4 Dec 2009 14:22:04 -0700

I am trying to create a NSImage or NSImageCell with rounded corners
inside a NSTableView. I can't get anything to work. Here is the best I
have so far inside my custom NSCell:

- (void)drawInteriorWithFrame:(NSRect)frame inView:(NSView *)controlView {
  if (thumbnailLink) {
        NSURL *url = [NSURL URLWithString:thumbnailLink];
        if (url) {
                NSRect imageFrame = [self _imageFrameForInteriorFrame:frame];
                NSImage *image = [[NSImage alloc] initWithContentsOfURL:url];
                [image setScalesWhenResized:YES];
                [image setSize:NSMakeSize(IMAGE_HEIGHT, IMAGE_WIDTH)];

                [NSGraphicsContext saveGraphicsState];
                imageFrame = NSInsetRect(imageFrame, 1, 1);
                NSBezierPath *clipPath = [NSBezierPath
bezierPathWithRoundedRect:imageFrame cornerRadius:5.0];
                [clipPath setWindingRule:NSEvenOddWindingRule];
                [clipPath addClip];
                [NSGraphicsContext restoreGraphicsState];
                [image drawInRect:imageFrame fromRect:NSMakeRect(0, 0,
0, 0) operation:NSCompositeSourceIn fraction:1.0];
                [image release];
        }
}
...

Any ideas on how to do this?.

Thanks,

John
_______________________________________________

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

  • Follow-Ups:
    • Re: Draw rounded NSImage
      • From: Gideon King <email@hidden>
  • Prev by Date: Re: Best way to hook into the run loop?
  • Next by Date: Problem setting to-one relationship on NSManagedObject
  • Previous by thread: Re: unrecognized selector error when calling -stringValue on NSNumber
  • Next by thread: Re: Draw rounded NSImage
  • Index(es):
    • Date
    • Thread