Greetings:
I have an image within a customized NSView via compositeToPoint
method. The bitmap image gets blurrier as I scale it.
How can I maintain the original quality/resolution as I scale?
} // end drawRect().
...
- (void)setScale:(float)factor {
NSSize imageSize = [self origImageSize];
imageSize.width *= factor;
imageSize.height *= factor;
[[self image]setSize:imageSize];
[self setNeedsDisplay:YES];
}
...
===========================
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/email@hidden