Created
February 9, 2025 06:59
-
-
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.
This file contains 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
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