1. ホーム
  2. cocoa

NSImageを新規ファイルとして保存する方法

2023-08-31 12:09:50

質問

NSImageを新しいファイル(png, jpg, ...)として特定のディレクトリに保存するにはどうしたらよいでしょうか?

どのように解決するのですか?

このようにします。

NSBitmapImageRep *imgRep = [[image representations] objectAtIndex: 0];
NSData *data = [imgRep representationUsingType: NSPNGFileType properties: nil];
[data writeToFile: @"/path/to/file.png" atomically: NO];