| layout | default-layout |
|---|---|
| title | Interface ECISegment - Dynamsoft Barcode Reader JS Edition API Reference |
| description | This page shows the JS edition of the interface ECISegment in Dynamsoft DBR Module. |
| keywords | ECI segment, barcode, JS |
| needAutoGenerateSidebar | true |
| noTitleIndex | true |
The ECISegment interface represents an Extended Channel Interpretation (ECI) segment within a barcode. Each segment specifies the character encoding used for a portion of the decoded bytes. Charset names follow the IANA character set registry (e.g., "UTF-8", "ISO-8859-1").
interface ECISegment {
eciValue: number;
charsetEncoding: string;
startIndex: number;
length: number;
}The ECI assignment number as defined by ISO/IEC 15424.
eciValue: number;The charset encoding name as defined by IANA (e.g., "UTF-8", "ISO-8859-1").
charsetEncoding: string;The start index of this ECI segment in the decoded barcode bytes.
startIndex: number;The length in bytes of this segment within the decoded barcode bytes.
length: number;See also
- [BarcodeResultItem]({{ site.js_api }}interfaces/barcode-result-item.html)
Remarks
New added in CaptureVisionBundle version 3.4.2000 & BarcodeReaderBundle version 11.4.2000.