| Home 目次>ApplicationKit>NSGraphicsContext | 10.1 |
setImageInterpolation:
グラフィックスコンテキストの滑らかさをセットします
-(void) setImageInterpolation:(NSImageInterpolation)interpolation
【返り値】 | |
| void | なし |
| 【パラメータ】 | |
| interpolation | 滑らかさ |
【解説】
グラフィックスコンテキストの滑らかさをセットします。
【NSImageInterpolation】滑らかさの度合い
● NSImageInterpolationDefault デフォルト
● NSImageInterpolationNone なし
● NSImageInterpolationLow 低
● NSImageInterpolationHigh 高
【例文】
#import "Controller.h"
@implementation Controller
- ( IBAction )pushButton:( id )sender
{
NSGraphicsContext *gCon = [NSGraphicsContext graphicsContextWithWindow:[sender window]];
[gCon setImageInterpolation:NSImageInterpolationHigh];
switch ([gCon imageInterpolation]){
case NSImageInterpolationDefault:
NSLog( @"NSImageInterpolationDefault" );
break ;
case NSImageInterpolationNone:
NSLog( @"NSImageInterpolationNone" );
break ;
case NSImageInterpolationLow:
NSLog( @"NSImageInterpolationLow" );
break ;
case NSImageInterpolationHigh:
NSLog( @"NSImageInterpolationHigh" );
break ;
}
}
@end
![]() | |
この記事を評価してください。
| Home 目次>ApplicationKit>NSGraphicsContext | 修正日2006.12.26 |