本文介绍了如何将 NSImage 保存为新文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何将 NSImage 保存为某个目录中的新文件(png、jpg、...)?
How can I save a NSImage as a new file (png, jpg, ...) in a certain directory?
推荐答案
做这样的事情:
NSBitmapImageRep *imgRep = [[image representations] objectAtIndex: 0];
NSData *data = [imgRep representationUsingType: NSPNGFileType properties: nil];
[data writeToFile: @"/path/to/file.png" atomically: NO];
这篇关于如何将 NSImage 保存为新文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!