You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Boolean value to provide converting to HDR during decoding.
92
+
A Boolean value (NSNumber) to provide converting to HDR during decoding. Currently if number is 0, use SDR, else use HDR. But we may extend this option to use `NSUInteger` in the future (means, think this options as int number, but not actual boolean)
93
93
@note Supported by iOS 17 and above when using ImageIO coder (third-party coder can support lower firmware)
94
-
Defaults to NO, decoder will automatically convert SDR.
94
+
Defaults to @(NO), decoder will automatically convert SDR.
A Boolean value to provide converting to HDR during decoding.
341
+
A Boolean value (NSNumber) to provide converting to HDR during decoding. Currently if number is 0, use SDR, else use HDR. But we may extend this option to use `NSUInteger` in the future (means, think this options as int number, but not actual boolean)
342
342
@note Supported by iOS 17 and above when using ImageIO coder (third-party coder can support lower firmware)
343
-
Defaults to NO, decoder will automatically convert SDR.
343
+
Defaults to @(NO), decoder will automatically convert SDR.
@note The overhead of object creation means this method is best suited for infrequent color sampling. For heavy image processing, grab the raw bitmap data and process yourself.
124
124
125
125
@param point The position of pixel
126
+
@warning This API currently support 8 bits per component only (RGBA8888 etc), not RGBA16U/RGBA10
126
127
@return The color for specify pixel, or nil if any error occur
0 commit comments