GSKScanFlowPostProcessingActions
Objective-C
enum GSKScanFlowPostProcessingActions : NSUInteger {}
Swift
struct GSKScanFlowPostProcessingActions : OptionSet, @unchecked Sendable
The various image processing actions available in the post-processing screen.
This is an option set so you can combine multiple actions.
-
No actions
Declaration
Objective-C
GSKScanFlowPostProcessingActionNone = 0
-
The filter action
Declaration
Objective-C
GSKScanFlowPostProcessingActionEditFilter = 1 << 0
Swift
static var editFilter: GSKScanFlowPostProcessingActions { get }
-
The rotate scan action
Declaration
Objective-C
GSKScanFlowPostProcessingActionRotate = 1 << 1
Swift
static var rotate: GSKScanFlowPostProcessingActions { get }
-
The distortion (book curvature) correction
Declaration
Objective-C
GSKScanFlowPostProcessingActionDistortionCorrection = 1 << 2
Swift
static var distortionCorrection: GSKScanFlowPostProcessingActions { get }
-
All the actions
Declaration
Objective-C
GSKScanFlowPostProcessingActionAll = (9223372036854775807L * 2UL + 1UL)
Swift
static var all: GSKScanFlowPostProcessingActions { get }