getWhite(_:alpha:)
Returns the grayscale components of the color.
Declaration
func getWhite(_ white: UnsafeMutablePointer<CGFloat>?, alpha: UnsafeMutablePointer<CGFloat>?) -> BoolParameters
- white:
On return, the grayscale component of the color object. On applications linked for iOS 10 or later, an extended range gray color space specifies the grayscale component and can have any value. Values between
0.0and1.0are inside the sRGB color gamut. On earlier versions of iOS, the specified value is always between0.0and1.0. - alpha:
On return, the opacity component of the color object, specified as a value between
0.0and1.0.
Return Value
Discussion
If the color is in a compatible color space, it converts into grayscale format and its returned to your application. If the color isn’t in a compatible color space, the parameters don’t change.