Kofax Mobile SDK API Reference
Properties | List of all members
KFXQuickExtractionSettings Class Reference

A configuration object for controlling the Quick Extractor behavior. More...

#import <KFXQuickExtractionSettings.h>

Inheritance diagram for KFXQuickExtractionSettings:

Properties

NSArray * barcodes
 List of barcodes to be extracted. More...
 
CGFloat faceLeftPadding
 Face left padding controls the amount of background returned on left face side. More...
 
CGFloat faceRightPadding
 Face right padding controls the amount of background returned on right face side. More...
 
CGFloat faceTopPadding
 Face top padding controls the amount of background returned on top face side. More...
 
CGFloat faceBottomPadding
 Face bottom padding controls the amount of background returned on bottom face side. More...
 

Detailed Description

A configuration object for controlling the Quick Extractor behavior.

Property Documentation

- (NSArray*) barcodes
readwritenonatomicstrong

List of barcodes to be extracted.

Supported barcodes: PDF417, QR, Code39. By default are PDF and QR.

// Objective-C
quickExtractorSettings.barcodes = @[@(kfxKBRQRCode), @(kfxKBRPdf417), @(kfxKBRCode39)];
// Swift
quickExtractorSettings.barcodes = [Int(kfxKBRQRCode.rawValue), Int(kfxKBRPdf417.rawValue), Int(kfxKBRCode39.rawValue)]
See also
KBRSymbologies for all supported values.
- (CGFloat) faceBottomPadding
readwritenonatomicassign

Face bottom padding controls the amount of background returned on bottom face side.

Bottom padding in percent of found face height to control how much extra space needs to be added from bottom side. The valid values are in range 0 - 50. Values will be clamped to the valid range. By default is 0.

- (CGFloat) faceLeftPadding
readwritenonatomicassign

Face left padding controls the amount of background returned on left face side.

Left padding in percent of found face width to control how much extra space needs to be added on left side. The valid values are in range 0 - 50. Values will be clamped to the valid range. By default is 0.

- (CGFloat) faceRightPadding
readwritenonatomicassign

Face right padding controls the amount of background returned on right face side.

Right padding in percent of found face width to control how much extra space needs to be added on right side. The valid values are in range 0 - 50. Values will be clamped to the valid range. By default is 0.

- (CGFloat) faceTopPadding
readwritenonatomicassign

Face top padding controls the amount of background returned on top face side.

Top padding in percent of found face height to control how much extra space needs to be added from top side. The valid values are in range 0 - 50. Values will be clamped to the valid range. By default is 0.


The documentation for this class was generated from the following file:
Untitled Document © 2018 Kofax, Inc. All rights reserved. Use is subject to license terms.