OneDCodeDetails
The OneDCodeDetails class represents detailed information about a one-dimensional barcode. It inherits from the BarcodeDetails class.
Definition
Package: com.dynamsoft.dbr
Inheritance: BarcodeDetails -> OneDCodeDetails
public class OneDCodeDetails extends BarcodeDetails
Attributes
| Attribute | Type | Description |
|---|---|---|
startCharsBytes |
byte[] | The start chars of the one-dimensional barcode in a byte array. |
stopCharsBytes |
byte[] | The stop chars of the one-dimensional barcode in a byte array. |
checkDigitBytes |
byte[] | The check digit chars of the one-dimensional barcode in a byte array. |
startPatternRange |
float[] | The position of the start pattern relative to the barcode location. |
middlePatternRange |
float[] | The position of the middle pattern relative to the barcode location. |
endPatternRange |
float[] | The position of the end pattern relative to the barcode location. |
Constructors
| Constructor | Description |
|---|---|
OneDCodeDetails() |
Default constructor. |
Attribute Details
startCharsBytes
The start chars of the one-dimensional barcode in a byte array.
public byte[] startCharsBytes
stopCharsBytes
The stop chars of the one-dimensional barcode in a byte array.
public byte[] stopCharsBytes
checkDigitBytes
The check digit chars of the one-dimensional barcode in a byte array.
public byte[] checkDigitBytes
startPatternRange
The position of the start pattern relative to the barcode location.
public float[] startPatternRange
Remarks
The array represents a float array of length 2:
- Index 0: X coordinate of the start position in percentage value.
- Index 1: X coordinate of the end position in percentage value.
middlePatternRange
The position of the middle pattern relative to the barcode location.
public float[] middlePatternRange
Remarks
The array represents a float array of length 2:
- Index 0: X coordinate of the start position in percentage value.
- Index 1: X coordinate of the end position in percentage value.
endPatternRange
The position of the end pattern relative to the barcode location.
public float[] endPatternRange
Remarks
The array represents a float array of length 2:
- Index 0: X coordinate of the start position in percentage value.
- Index 1: X coordinate of the end position in percentage value.
Constructor Details
OneDCodeDetails()
Default constructor. Initializes a new instance of the OneDCodeDetails class.
public OneDCodeDetails()