Skip to content

Latest commit

 

History

History
68 lines (49 loc) · 1.95 KB

File metadata and controls

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

ExtendedBarcodeResult

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

extendedBarcodeResultType

The type of extended barcode result.

extendedBarcodeResultType: EnumExtendedBarcodeResultType;

See also

  • [EnumExtendedBarcodeResultType]({{ site.js_api }}enum-extended-barcode-result-type.html?lang=js)

deformation

The degree of deformation or distortion in the decoded barcode.

deformation: number;

clarity

The clarity or quality of the decoded barcode.

clarity: number;

samplingImage

The sampling image of the decoded barcode.

samplingImage: Core.DSImageData;

See also

  • [DSImageData]({{ site.dcvb_js_api }}core/basic-structures/ds-image-data.html)