| layout | default-layout |
|---|---|
| title | interface LocalizedBarcodeElement - Dynamsoft Core Module JS Edition API Reference |
| description | This page shows the JS edition of the interface LocalizedBarcodeElement in Dynamsoft Core Module. |
| keywords | localized barcode, JS |
| needAutoGenerateSidebar | true |
| noTitleIndex | true |
A localized element within a barcode. It extends RegionObjectElement and includes additional properties possibleFormats, possibleFormatsString, angle, moduleSize and confidence.
interface LocalizedBarcodeElement extends Core.RegionObjectElement {
possibleFormats: EnumBarcodeFormat;
possibleFormatsString: string;
angle: number;
moduleSize: number;
confidence: number;
}The possible formats or barcode types that the localized element could correspond to.
possibleFormats: EnumBarcodeFormat;See also
- [EnumBarcodeFormat]({{ site.js_api }}enum-barcode-format.html?lang=js)
A string that provides a human-readable representation of the possible barcode formats.
possibleFormatsString: string;The angle or orientation of the localized barcode element. It indicates how the element is positioned or rotated within the barcode.
angle: number;The size of the individual modules or elements within the localized barcode element.
moduleSize: number;The confidence score or reliability of the localization of the barcode element.
confidence: number;