Barcode

Defined in namespace Scandit.DataCapture.Barcode.Data

Barcode
class Barcode

Added in version 6.2.0

A recognized barcode.

Symbology
Symbology Symbology { get; }

Added in version 6.2.0

The symbology of the barcode.

Data
string Data { get; }

Added in version 6.2.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
byte[] RawData { get; }

Added in version 6.2.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.

AddOnData
string AddOnData { get; }

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
string CompositeData { get; }

Added in version 6.6.0

CompositeRawData
byte[] CompositeRawData { get; }

Added in version 6.6.0

EncodingRanges
IList<EncodingRange> EncodingRanges { get; }

Added in version 6.2.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
Quadrilateral Location { get; }

Added in version 6.2.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.

Gs1DataCarrier
bool Gs1DataCarrier { get; }

Added in version 6.2.0

True for codes that carry GS1 data.

CompositeFlag
CompositeFlag CompositeFlag { get; }

Added in version 6.2.0

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

ColorInverted
bool ColorInverted { get; }

Added in version 6.2.0

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

SymbolCount
int SymbolCount { get; }

Added in version 6.2.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
int FrameId { get; }

Added in version 6.2.0

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

ToJson()
string ToJson()

Added in version 6.2.0

Returns the JSON representation of the barcode.