如何将图像导出到文件夹?

时间:2009-04-27 02:07:40

标签: cocoa

现在我想将我的Project中的图像导出到一个文件夹,我想这是NSBundle和NSFileManager问题,但我不知道怎么办呢?非常感谢!

1 个答案:

答案 0 :(得分:5)

[[someImage TIFFRepresentation] writeToFile:@"path/to/file.tiff" atomically:NO];

会将NSImage导出为tiff文件,尽管你的问题有点模糊