Skip to content

Instantly share code, notes, and snippets.

@SKaplanOfficial
Created February 9, 2025 06:59
Show Gist options
  • Save SKaplanOfficial/08824e354197ac52bb001b9fbb8299fb to your computer and use it in GitHub Desktop.
Save SKaplanOfficial/08824e354197ac52bb001b9fbb8299fb to your computer and use it in GitHub Desktop.
NSImage class extension method to get the NSColor of the image at the specified (x,y) coordinate.
public extension NSImage {
/// Gets the color at the specified coordinate.
/// - Parameters:
/// - x: The horizontal coordinate.
/// - y: The vertical coordinate.
func colorAt(x: Int, y: Int) -> NSColor? {
if let tiffRep = self.tiffRepresentation {
if let bitmapRep = NSBitmapImageRep(data: tiffRep) {
let flippedY = Int(bitmapRep.size.height) - y
let color = bitmapRep.colorAt(x: x, y: flippedY)
return color
}
}
return nil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment