ComplexCodetextReader

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

NameDescription
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.

ParameterDescription
encodedCodetextencoded codetext

Returns: decoded HIBC LIC Complex Codetext or null.

tryDecodeHIBCPAS(encodedCodetext) (static)

Decodes HIBC PAS codetext.

ParameterDescription
encodedCodetextencoded codetext

Returns: decoded HIBC PAS Complex Codetext or null.

tryDecodeMailmark(encodedCodetext) (static)

Decodes Mailmark Barcode C and L codetext.

ParameterDescription
encodedCodetextencoded codetext

Returns: Decoded Mailmark Barcode C and L or null.

tryDecodeMailmark2D(encodedCodetext) (static)

Decodes Royal Mail Mailmark 2D codetext.

ParameterDescription
encodedCodetextencoded codetext

Returns: decoded Royal Mail Mailmark 2D or null.

tryDecodeMaxiCode(maxiCodeMode, encodedCodetext) (static)

Decodes MaxiCode codetext.

ParameterDescription
maxiCodeModeMaxiCode mode
encodedCodetextencoded codetext

Returns: Decoded MaxiCode codetext.

tryDecodeSwissQR(encodedCodetext) (static)

Decodes SwissQR codetext.

ParameterDescription
encodedCodetextencoded codetext

Returns: decoded SwissQRCodetext or null.

tryDecodeUSADriveId(encodedCodetext) (static)

Decodes USADriveId codetext.

ParameterDescription
encodedCodetextEncoded codetext

Returns: Decoded USADriveId or null.