Skip to content

Instantly share code, notes, and snippets.

@StanDimitroff
Last active August 30, 2018 20:54
Show Gist options
  • Save StanDimitroff/6a2fbcf3d7e2dd24bc70d4217cef59ac to your computer and use it in GitHub Desktop.
Save StanDimitroff/6a2fbcf3d7e2dd24bc70d4217cef59ac to your computer and use it in GitHub Desktop.
Grayscale image
extension UIImage {
var grayscaled: UIImage? {
guard let openGLContext = EAGLContext(api: .openGLES2) else { return self }
let ciContext = CIContext(eaglContext: openGLContext)
guard let currentFilter = CIFilter(name: "CIPhotoEffectNoir") else { return self }
currentFilter.setValue(CIImage(image: self), forKey: kCIInputImageKey)
if let output = currentFilter.outputImage,
let cgImage = ciContext.createCGImage(output, from: output.extent) {
return UIImage(cgImage: cgImage, scale: scale, orientation: imageOrientation)
}
return nil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment