From: Kent Sutherland Date: Sat, 7 Feb 2004 01:39:36 +0000 (+0000) Subject: The album art now casts a shadow, and might interpolate a bit better, X-Git-Tag: v1.3~40 X-Git-Url: http://git.ithinksw.org/MenuTunes.git/commitdiff_plain/703be04ff6d1a493d2920adc9a07911c587aea14 The album art now casts a shadow, and might interpolate a bit better, can't tell though. --- diff --git a/StatusWindowController.m b/StatusWindowController.m index 942e045..117c205 100755 --- a/StatusWindowController.m +++ b/StatusWindowController.m @@ -114,15 +114,16 @@ static StatusWindowController *sharedController; NSString *text = title; if ( art != nil ) { - image = art; - [[NSGraphicsContext currentContext] setImageInterpolation:NSImageInterpolationLow]; - [image setScalesWhenResized:YES]; - [image setSize:NSMakeSize(110, 110)]; - /*if (size.width > 110 && size.width > size.height) { - [image setSize:NSMakeSize(110, (size.width / size.height) * 110)]; - } else if (size.height > 110 && size.height > size.width) { - [image setSize:NSMakeSize((size.height / size.width) * 110, 110)]; - }*/ + NSImageRep *artRep = [art bestRepresentationForDevice:nil]; + image = [[NSImage alloc] initWithSize:NSMakeSize(110, 110)]; + [image lockFocus]; + { + [[NSGraphicsContext currentContext] setImageInterpolation:NSImageInterpolationHigh]; + [[NSGraphicsContext currentContext] setShouldAntialias:YES]; + [artRep drawInRect:NSMakeRect(3, 3, 104, 104)]; + } + [image unlockFocus]; + [image autorelease]; } else if ( source == ITMTRemoteLibrarySource ) { image = [NSImage imageNamed:@"Library"]; } else if ( source == ITMTRemoteCDSource ) {