Skip to content

Latest commit

 

History

History
68 lines (49 loc) · 1.71 KB

File metadata and controls

68 lines (49 loc) · 1.71 KB
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

ECISegment

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;
}

eciValue

The ECI assignment number as defined by ISO/IEC 15424.

eciValue: number;

charsetEncoding

The charset encoding name as defined by IANA (e.g., "UTF-8", "ISO-8859-1").

charsetEncoding: string;

startIndex

The start index of this ECI segment in the decoded barcode bytes.

startIndex: number;

length

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.