Barcode

Defined under the namespace Scandit.Datacapture.Barcode

Barcode
class Barcode

Added in version 6.5.0

A recognized barcode.

symbology
get symbology(): Symbology

Added in version 6.5.0

The symbology of the barcode.

data
get data(): string | null

Added in version 6.5.0

The data of this code as a unicode string.

For some types of barcodes/2d codes (for example Data Matrix, Aztec, Pdf417), the data may contain non-printable characters, characters that cannot be represented as unicode code points, or nul-bytes in the middle of the string. data may be null for such codes. How invalid code points are handled is platform-specific and should not be relied upon. If your applications relies on scanning of such codes, use rawData instead which is capable of representing this data without loss of information.

rawData
get rawData(): string

Added in version 6.5.0

The raw data contained in the barcode.

Use this property instead of data if you are relying on binary-encoded data that cannot be represented as unicode strings.

Unlike data which returns the data in Unicode representation, the rawData returns the data with the encoding that was used in the barcode. See encodingRanges for more information.

The raw data is base64 encoded as a string and might need to be decoded to be used.

addOnData
get addOnData(): string | null

Added in version 6.5.0

If present, this property returns the add-on code (also known as extension code) associated with this barcode. See Scan Add-On/Extension Codes to understand how add-ons can be enabled.

compositeData
get compositeData(): string | null

Added in version 6.6.0

compositeRawData
get compositeRawData(): string

Added in version 6.6.0

The raw data is base64 encoded as a string and might need to be decoded to be used.

encodingRanges
get encodingRanges(): EncodingRange[]

Added in version 6.5.0

Array of encoding ranges. Each entry of the returned encoding array points into bytes of rawData and indicates what encoding is used for these bytes. This information can then be used to convert the bytes to unicode, or other representations. For most codes, a single encoding range covers the whole data, but certain 2d symbologies, such as Symbology.QR allow to switch the encoding in the middle of the code.

The returned encoding ranges are sorted from lowest to highest index. Each byte in rawData is contained in exactly one range, e.g. there are no holes or overlapping ranges.

location
get location(): Quadrilateral

Added in version 6.5.0

The location of the code. The coordinates are in image-space, meaning that the coordinates correspond to actual pixels in the image. For display, the coordinates need first to be converted into screen-space using the data capture view.

The meaning of the values of Quadrilateral.topLeft etc is such that the top left point corresponds to the top left corner of the barcode, independent of how the code is oriented in the image.

Note

If you use BarcodeTracking you should not use this location at all. Instead use the always up-to-date TrackedBarcode.location.

Warning

In case the feature is not licensed, a quadrilateral with all corners set to 0, 0 is returned.

isGS1DataCarrier
get isGS1DataCarrier(): boolean

Added in version 6.5.0

True for codes that carry GS1 data.

compositeFlag
get compositeFlag(): CompositeFlag

Added in version 6.5.0

Flag to hint whether the barcode is part of a composite code.

isColorInverted
get isColorInverted(): boolean

Added in version 6.5.0

Whether the recognized code is color inverted (printed bright on dark background).

symbolCount
get symbolCount(): number

Added in version 6.5.0

The symbol count of this barcode. Use this value to determine the symbol count of a particular barcode, e.g. to configure the active symbol counts.

frameID
get frameID(): number

Added in version 6.5.0

Id of the frame from which this barcode information was obtained.

isStructuredAppend
get isStructuredAppend(): boolean

Added in version 6.15.0

Whether the barcode is a structured append barcode.

structuredAppendData
get structuredAppendData(): StructuredAppendData | null

Added in version 6.15.0

If present, this property returns the structured append data associated with this barcode. In structured append mode data is encoded across multiple 1D or 2D barcodes where each barcode contains only one segment of the complete data. Once all segment-containing barcodes are scanned the complete data can be read out.

Only a few symbologies (pdf417, microPdf417, QR, DataMatrix, Aztec, DotCode, MaxiCode) can use this mode, and each has a different set of limitations, like included metadata or the maximum number of barcodes that can form a set.