Skip to content

Latest commit

 

History

History
86 lines (73 loc) · 1.65 KB

File metadata and controls

86 lines (73 loc) · 1.65 KB
layout title description keywords needAutoGenerateSidebar noTitleIndex multiProgrammingLanguage enableLanguageSelection ignore permalink
default-layout
iSamplingImageData Class - Dynamsoft Barcode Reader iOS API Reference
This page shows the iSamplingImageData Class of Dynamsoft Barcode Reader for iOS SDK.
iSamplingImageData, class, api reference, objective-c, oc, swift
true
true
true
true
true
/programming/objectivec-swift/api-reference/auxiliary-iSamplingImageData.html

Class iSamplingImageData

SamplingImageData stores the detailed image data in ExtendedResult.

>- Objective-C >- Swift > >1. ```objc @interface iSamplingImageData : NSObject ``` 2. ```swift 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 > >1. ```objc @property (nonatomic, nullable) NSData* bytes; ``` 2. ```swift var bytes: Data? { get set } ```

width

The width of the sampling image.

>- Objective-C >- Swift > >1. ```objc @property (nonatomic, nullable) NSInteger width; ``` 2. ```swift var width: Int { get set } ```

height

The height of the sampling image.

>- Objective-C >- Swift > >1. ```objc @property (nonatomic, nullable) NSInteger height; ``` 2. ```swift var height: Int { get set } ```