macOS/iOS API解説

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

目次

+imageRepsWithData:

INDEX>AppKit>NSBitmapImageRep

データからビットマップ表示の配列を作って、初期化して返します

Objective-C

+(NSArray *)imageRepsWithData:(NSData *)bitmapData:

Swift

class func imageRepsWithData(_ data: NSData) -> [NSImageRep]

解説

ビットマップデータ(bitmapData)でNSBitmapImageRepを作って、初期化して返します。
解読できないビットマップデータなら空の配列を返します。

返り値

Objective-C

( NSArray * )

Swift

 [NSImageRep]

配列

引数

Objective-C

( NSData * )bitmapData

Swift

(_ data: NSData)

ビットマップデータ

フレームワーク

ApplicationKit

クラス

NSBitmapImageRep

使用可能

10.0

参照

例文

Objective-C

#import "SetImage.h"

@implementation SetImage

- (IBAction)set:(id)sender
{
    //開けるファイル拡張子の配列
    NSArray      *imgTypes    = [ NSArray arrayWithObject : @"tiff" ];
    //OpenPanelを作る
    NSOpenPanel  *opImage       = [ NSOpenPanel openPanel ];
    //Imageを作る
    NSImage      *img = [[[NSImage alloc] initWithSize:NSMakeSize(100,100)] autorelease];
    NSBitmapImageRep *bmpRep;
    NSArray *bitmapArray;
    NSData *dat;
    //OpenPanelの結果のボタン番号
    int		  opRet;
     
        //OpenPanelでファイル選択   
    opRet = [ opImage runModalForDirectory : NSHomeDirectory() //どこのディレクトリを出すか
                                     file : @"Pictures" //どのどのファイルを選択しておくか
                                    types : imgTypes ];//選べるファイルタイプ

    if ( opRet == NSOKButton ) {  // OPENPanelのボタンがOKなら
        //NSDataを作ってファイルから読み込む
        dat = [NSData dataWithContentsOfFile: [ opImage filename ] ];
        bitmapArray = [NSBitmapImageRep imageRepsWithData:dat];
        bmpRep = [bitmapArray objectAtIndex:0];
        [img addRepresentation:bmpRep];
 
     
        NSLog([NSString stringWithFormat:@"bit / pixel:%d",[bmpRep bitsPerPixel]]);
    }
}

@end


Swift