Skip to content

Instantly share code, notes, and snippets.

@SKaplanOfficial
Created February 9, 2025 07:00
Show Gist options
  • Save SKaplanOfficial/e0fd739ebbc385eed1651b39073cbe46 to your computer and use it in GitHub Desktop.
Save SKaplanOfficial/e0fd739ebbc385eed1651b39073cbe46 to your computer and use it in GitHub Desktop.
NSImage class extension computed property for getting the raw pixel dimensions of an NSImage (rather than the point size, which can vary by screen resolution).
public extension NSImage {
/// The pixel width and height of the image.
var dimensions: NSSize {
let rep = self.representations.first
return NSSize(width: rep?.pixelsWide ?? 0, height: rep?.pixelsHigh ?? 0)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment