macOS/iOS API解説

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

目次

imageInterpolation

グラフィックスコンテキストの滑らかさを返します

解説

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

返り値

( NSImageInterpolation )

補間法

引数

フレームワーク

ApplicationKit

クラス

NSGraphicsContext

Instance Methods

使用可能

10.1

参照

- setImageInterpolation:

例文

#import "Controller.h"

@implementation Controller

- (IBAction)pushButton:(id)sender
{

NSGraphicsContext *gCon = [NSGraphicsContext graphicsContextWithWindow:[sender window]];

switch ([gCon imageInterpolation]){

    case NSImageInterpolationDefault:
        NSLog(@"NSImageInterpolationDefault");
        break;
    case NSImageInterpolationNone:
        NSLog(@"NSImageInterpolationNone");
        break;
    case NSImageInterpolationLow:
        NSLog(@"NSImageInterpolationLow");
        break;
    case NSImageInterpolationHigh:
        NSLog(@"NSImageInterpolationHigh");
        break;
        }

}


@end