GSKScanFlowScan

Objective-C

@interface GSKScanFlowScan : NSObject

Swift

class GSKScanFlowScan : NSObject

A page captured by the scan flow.

  • The original JPEG out of the camera.

    Note that this image might be rotated, and needs to be read with its EXIF orientation to be properly displayed. UIImage’s methods will properly take care of that.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nonnull originalFilePath;

    Swift

    var originalFilePath: String { get set }
  • The enhanced, processed, image.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nonnull enhancedFilePath;

    Swift

    var enhancedFilePath: String { get set }
  • If OCR was performed, the recognized text.

    Declaration

    Objective-C

    @property (nonatomic, strong) GSKScanFlowOCRResult *_Nonnull ocrResult;

    Swift

    var ocrResult: GSKScanFlowOCRResult { get set }