Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save FlexMonkey/a3fca959b5e566b4ccc785b00b75d396 to your computer and use it in GitHub Desktop.
Save FlexMonkey/a3fca959b5e566b4ccc785b00b75d396 to your computer and use it in GitHub Desktop.
CIImage from named NSImage for Cocoa
let monalisa = NSImage(named: "monalisa.jpg")!
let tiffData = monalisa.TIFFRepresentation!
let bitmap = NSBitmapImageRep(data: tiffData)
let image = CIImage(bitmapImageRep: bitmap!)!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment