From 703be04ff6d1a493d2920adc9a07911c587aea14 Mon Sep 17 00:00:00 2001 From: Kent Sutherland Date: Sat, 7 Feb 2004 01:39:36 +0000 Subject: [PATCH] The album art now casts a shadow, and might interpolate a bit better, can't tell though. --- StatusWindowController.m | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) 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 ) { -- 2.20.1