标签: macos swift2 xcode7 nsimage ciimage
我喜欢在swift 2.2中将NSImage转换为CIImage for mac app。 有没有人有一些示例代码?
答案 0 :(得分:8)
以这种方式:
let image = NSImage(contentsOfFile: "...")! let imageData = image.tiffRepresentation! let ciImage = CIImage(data: imageData)