| layout | default-layout |
|---|---|
| title | interface ExtendedBarcodeResult - Dynamsoft Core Module JS Edition API Reference |
| description | This page shows the JS edition of the interface ExtendedBarcodeResult in Dynamsoft Core Module. |
| keywords | extended barcode, JS |
| needAutoGenerateSidebar | true |
| noTitleIndex | true |
An extended barcode result in a decoded barcode element. It contains information such as the type of extended barcode, deformation, clarity, and a sampling image of the barcode.
interface ExtendedBarcodeResult extends DecodedBarcodeElement {
extendedBarcodeResultType: EnumExtendedBarcodeResultType;
deformation: number;
clarity: number;
samplingImage: Core.DSImageData;
}The type of extended barcode result.
extendedBarcodeResultType: EnumExtendedBarcodeResultType;See also
- [EnumExtendedBarcodeResultType]({{ site.js_api }}enum-extended-barcode-result-type.html?lang=js)
The degree of deformation or distortion in the decoded barcode.
deformation: number;The clarity or quality of the decoded barcode.
clarity: number;The sampling image of the decoded barcode.
samplingImage: Core.DSImageData;See also
- [DSImageData]({{ site.dcvb_js_api }}core/basic-structures/ds-image-data.html)