Method | Description | |
---|---|---|
Code39Reader ( ) : System |
Creates a reader that assumes all encoded data is data, and does not treat the final character as a check digit. It will not decoded "extended Code 39" sequences.
|
|
Code39Reader ( bool usingCheckDigit ) : System |
Creates a reader that can be configured to check the last character as a check digit. It will not decoded "extended Code 39" sequences.
|
|
Code39Reader ( bool usingCheckDigit, bool extendedMode ) : System |
Creates a reader that can be configured to check the last character as a check digit, or optionally attempt to decode "extended Code 39" sequences that are used to encode the full ASCII character set.
|
|
decodeRow ( int rowNumber, |
Attempts to decode a one-dimensional barcode format given a single row of an image.
|
Method | Description | |
---|---|---|
decodeExtended ( String encoded ) : String | ||
findAsteriskPattern ( |
||
patternToChar ( int pattern, char &c ) : bool | ||
toNarrowWidePattern ( int counters ) : int |
public Code39Reader ( bool usingCheckDigit ) : System | ||
usingCheckDigit | bool | if true, treat the last data character as a check digit, not /// data, and verify that the checksum passes. |
return | System |
public Code39Reader ( bool usingCheckDigit, bool extendedMode ) : System | ||
usingCheckDigit | bool | if true, treat the last data character as a check digit, not /// data, and verify that the checksum passes. |
extendedMode | bool | if true, will attempt to decode extended Code 39 sequences in the text. |
return | System |
public decodeRow ( int rowNumber, |
||
rowNumber | int | row number from top of the row |
row | the black/white pixel data of the row | |
hints | object>.IDictionary | decode hints |
return | System.Result |