RGLBarcodeResult
The RGLBarcodeResult
enumeration contains identifiers that determine the barcodes data reading result.
typedef NS_ENUM(NSInteger, RGLBarcodeResult) {
RGLBarcodeResultNoErr = 0,
RGLBarcodeResultNullPtrErr = -6001,
RGLBarcodeResultBadArgErr = -6002,
RGLBarcodeResultSizeErr = -6003,
RGLBarcodeResultRangeErr = -6004,
RGLBarcodeResultInternalErr = -6005,
RGLBarcodeResultTryExceptErr = -6006,
RGLBarcodeResultBarCodeNotFound = -6008,
RGLBarcodeResultBarCodeDecodeErr = -6010,
RGLBarcodeResultNoUserDLLFound = -6019,
RGLBarcodeResultNoIPPDLLFound = -6020,
RGLBarcodeResultIppExecErr = -6024,
RGLBarcodeResultIppTryExceptErr = -6025,
RGLBarcodeResultBARCODE_ERROR_Inputparam = -11001,
RGLBarcodeResultBARCODE_ERROR_FInit = -11006,
RGLBarcodeResultBARCODE_ERROR_NotLoadIpDecodedll = -11012,
RGLBarcodeResultBARCODE_ERROR_InnerProblem = -11100,
RGLBarcodeResultBARCODE_ERROR_Decode_1D_BadDecode = -11200,
RGLBarcodeResultBARCODE_ERROR_FindRowOrColumn = -11201,
RGLBarcodeResultBARCODE_ERROR_Find3X8_2D_X = -11202,
RGLBarcodeResultBARCODE_ERROR_Find3X8_2D_Y = -11203,
RGLBarcodeResultBARCODE_ERROR_2D_UgolMax = -11204,
RGLBarcodeResultBARCODE_ERROR_INDEFINITELY_DECODED = -11210,
RGLBarcodeResultBARCODE_ERROR_Dllnotinit = -11300,
RGLBarcodeResultBARCODE_ERROR_IPDECODE_DLL_Try_Except = -11400,
RGLBarcodeResultIPDECODE_ERROR_LARGEERRORS = -4503,
RGLBarcodeResultIPDECODE_ERROR_FAULTCOLUMNS = -4504,
RGLBarcodeResultIPDECODE_ERROR_FAULTROWS = -4505,
RGLBarcodeResultIPDECODE_ERROR_INCORRECT_ERROR_LEVEL = -4511,
RGLBarcodeResultIPDECODE_ERROR_LOADING_DEV_TABLE = -4512
} NS_SWIFT_NAME(BarcodeResult);
Constant | Description |
---|---|
RGLBarcodeResultNoErr | no error |
RGLBarcodeResultNullPtrErr | null pointer of input arg/param error |
RGLBarcodeResultBadArgErr | function arg/param is bad |
RGLBarcodeResultSizeErr | wrong value of data size |
RGLBarcodeResultRangeErr | bad values of any parameter range |
RGLBarcodeResultInternalErr | internal program error |
RGLBarcodeResultTryExceptErr | try-except process |
RGLBarcodeResultBarCodeNotFound | barcode detection error |
RGLBarcodeResultBarCodeDecodeErr | barcode decoding error |
RGLBarcodeResultNoUserDLLFound | "ImageProcess.dll" connection error |
RGLBarcodeResultNoIPPDLLFound | IPP Dll connection error |
RGLBarcodeResultIppExecErr | run-time error in IPP-function |
RGLBarcodeResultIppTryExceptErr | _try-except _execution in IPP-function |
RGLBarcodeResultBARCODE_ERROR_Inputparam | input data error |
RGLBarcodeResultBARCODE_ERROR_FInit | initialization error |
RGLBarcodeResultBARCODE_ERROR_NotLoadIpDecodedll | "IpDecode.dll" connection error |
RGLBarcodeResultBARCODE_ERROR_InnerProblem | internal program error |
RGLBarcodeResultBARCODE_ERROR_Decode_1D_BadDecode | 1D-barcode decoding error |
RGLBarcodeResultBARCODE_ERROR_FindRowOrColumn | row or column count computational error (PDF417) |
RGLBarcodeResultBARCODE_ERROR_Find3X8_2D_X | MinX computational error (PDF417) |
RGLBarcodeResultBARCODE_ERROR_Find3X8_2D_Y | MinY computational error (PDF417) |
RGLBarcodeResultBARCODE_ERROR_2D_UgolMax | invalid barcode angle (> 3 degree) |
RGLBarcodeResultBARCODE_ERROR_INDEFINITELY_DECODED | the result may contain decoding errors |
RGLBarcodeResultBARCODE_ERROR_Dllnotinit | dll initialization error |
RGLBarcodeResultBARCODE_ERROR_IPDECODE_DLL_Try_Except | try-except in IPDECODE-function |
RGLBarcodeResultIPDECODE_ERROR_LARGEERRORS | too many invalid code words |
RGLBarcodeResultIPDECODE_ERROR_FAULTCOLUMNS | invalid number of columns |
RGLBarcodeResultIPDECODE_ERROR_FAULTROWS | invalid number of rows |
RGLBarcodeResultIPDECODE_ERROR_INCORRECT_ERROR_LEVEL | correction Level error |
RGLBarcodeResultIPDECODE_ERROR_LOADING_DEV_TABLE | loading "DevTable.bin" error |