-
-
Save gkye/6ffa5cf75ba6a673882993bd224ffacb to your computer and use it in GitHub Desktop.
iOS Swift UIImage subscript extension to get pixel color
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
extension UIImage { | |
subscript (x: Int, y: Int) -> UIColor? { | |
if x < 0 || x > Int(size.width) || y < 0 || y > Int(size.height) { | |
return nil | |
} | |
let provider = CGImageGetDataProvider(self.CGImage) | |
let providerData = CGDataProviderCopyData(provider) | |
let data = CFDataGetBytePtr(providerData) | |
let numberOfComponents = 4 | |
let pixelData = ((Int(size.width) * y) + x) * numberOfComponents | |
let r = CGFloat(data[pixelData]) / 255.0 | |
let g = CGFloat(data[pixelData + 1]) / 255.0 | |
let b = CGFloat(data[pixelData + 2]) / 255.0 | |
let a = CGFloat(data[pixelData + 3]) / 255.0 | |
return UIColor(red: r, green: g, blue: b, alpha: a) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment