Created
April 13, 2021 09:13
-
-
Save garethng/2a6e95a7d61cee0807e16e6f85e94cf8 to your computer and use it in GitHub Desktop.
convert label to icon
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 NSView { | |
var image: NSImage? { | |
guard let bitmapImageRep = bitmapImageRepForCachingDisplay(in: bounds) else { return nil } | |
cacheDisplay(in: bounds, to: bitmapImageRep) | |
guard let cgImage = bitmapImageRep.cgImage else { return nil } | |
return NSImage(cgImage: cgImage, size: bounds.size) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment