macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

setImageInterpolation:

グラフィックスコンテキストの滑らかさをセットします
-(void)setImageInterpolation:(NSImageInterpolation)interpolation:

解説

グラフィックスコンテキストの滑らかさをセットします。
【NSImageInterpolation】滑らかさの度合い
● NSImageInterpolationDefault デフォルト
● NSImageInterpolationNone なし
● NSImageInterpolationLow 低
● NSImageInterpolationHigh 高

返り値

( void )

なし

引数

( NSImageInterpolation )interpolation

滑らかさ

フレームワーク

ApplicationKit

クラス

NSGraphicsContext

Instance Methods

使用可能

10.1

参照

- imageInterpolation

例文

#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