Class iSamplingImageData
SamplingImageData
stores the detailed image data in ExtendedResult
.
- Objective-C
- Swift
@interface iSamplingImageData : NSObject
class iSamplingImageData : NSObject
Attribute | Descriptions |
---|---|
bytes |
The sampling image data in a byte array. |
width |
The width of the sampling image. |
height |
The height of the sampling image. |
bytes
The sampling image data in a byte array.
- Objective-C
- Swift
@property (nonatomic, nullable) NSData* bytes;
var bytes: Data? { get set }
width
The width of the sampling image.
- Objective-C
- Swift
@property (nonatomic, nullable) NSInteger width;
var width: Int { get set }
height
The height of the sampling image.
- Objective-C
- Swift
@property (nonatomic, nullable) NSInteger height;
var height: Int { get set }