Skip to content

Instantly share code, notes, and snippets.

@EyreFree
EyreFree / CIImage+.swift
Last active April 27, 2020 04:47
iOS CIImage Replace color with another one in Swift 3.1
import Foundation
struct EFUIntPixel {
var red: UInt8 = 0
var green: UInt8 = 0
var blue: UInt8 = 0
var alpha: UInt8 = 0
}
extension CIImage {