DSDocumentSide
DSDocumentSide is an enumeration that defines which side of a document is referenced when retrieving images from an MRZScanResult.
Definition
Assembly: DynamsoftMRZScanner.xcframework
- Objective-C
- Swift
typedef NS_ENUM(NSInteger, DSDocumentSide) { DSDocumentSideMRZ = 0, DSDocumentSideOpposite = 1 };@objc public enum DocumentSide: Int { case mrz = 0 case opposite = 1 }
Members
| Member | Value | Description |
|---|---|---|
DSDocumentSideMRZ / mrz |
0 | The side of the document that contains the MRZ. |
DSDocumentSideOpposite / opposite |
1 | The other side of the document. Only applicable when the MRZ and the portrait are on opposite sides (e.g., certain ID cards). |