ComplexCodetextReader
Contents
[
Hide
]ComplexCodetextReader class
ComplexCodetextReader decodes codetext to specified complex barcode type.
new ComplexCodetextReader()
Example:
This sample shows how to recognize and decode SwissQR image.
let cr = new BarCodeReader("SwissQRCodetext.png", null, DecodeType.QR);
cr.read();
let result = ComplexCodetextReader.tryDecodeSwissQR(cr.getCodeText(false));
Methods
| Name | Description |
|---|---|
| tryDecodeHIBCLIC(encodedCodetext) (static) | Decodes HIBC LIC codetext. |
| tryDecodeHIBCPAS(encodedCodetext) (static) | Decodes HIBC PAS codetext. |
| tryDecodeMailmark(encodedCodetext) (static) | Decodes Mailmark Barcode C and L codetext. |
| tryDecodeMailmark2D(encodedCodetext) (static) | Decodes Royal Mail Mailmark 2D codetext. |
| tryDecodeMaxiCode(maxiCodeMode, encodedCodetext) (static) | Decodes MaxiCode codetext. |
| tryDecodeSwissQR(encodedCodetext) (static) | Decodes SwissQR codetext. |
| tryDecodeUSADriveId(encodedCodetext) (static) | Decodes USADriveId codetext. |
tryDecodeHIBCLIC(encodedCodetext) (static)
Decodes HIBC LIC codetext.
| Parameter | Description |
|---|---|
| encodedCodetext | encoded codetext |
Returns: decoded HIBC LIC Complex Codetext or null.
tryDecodeHIBCPAS(encodedCodetext) (static)
Decodes HIBC PAS codetext.
| Parameter | Description |
|---|---|
| encodedCodetext | encoded codetext |
Returns: decoded HIBC PAS Complex Codetext or null.
tryDecodeMailmark(encodedCodetext) (static)
Decodes Mailmark Barcode C and L codetext.
| Parameter | Description |
|---|---|
| encodedCodetext | encoded codetext |
Returns: Decoded Mailmark Barcode C and L or null.
tryDecodeMailmark2D(encodedCodetext) (static)
Decodes Royal Mail Mailmark 2D codetext.
| Parameter | Description |
|---|---|
| encodedCodetext | encoded codetext |
Returns: decoded Royal Mail Mailmark 2D or null.
tryDecodeMaxiCode(maxiCodeMode, encodedCodetext) (static)
Decodes MaxiCode codetext.
| Parameter | Description |
|---|---|
| maxiCodeMode | MaxiCode mode |
| encodedCodetext | encoded codetext |
Returns: Decoded MaxiCode codetext.
tryDecodeSwissQR(encodedCodetext) (static)
Decodes SwissQR codetext.
| Parameter | Description |
|---|---|
| encodedCodetext | encoded codetext |
Returns: decoded SwissQRCodetext or null.
tryDecodeUSADriveId(encodedCodetext) (static)
Decodes USADriveId codetext.
| Parameter | Description |
|---|---|
| encodedCodetext | Encoded codetext |
Returns: Decoded USADriveId or null.