Table of contents
Swift
Objective-C

This documentation is deprecated. It applies only to legacy version 9.x of Barcode Reader and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

Class iSamplingImageData

SamplingImageData stores the detailed image data in ExtendedResult.

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

width

The width of the sampling image.

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

height

The height of the sampling image.

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

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: