scandit-sdk
Version:
Scandit Barcode Scanner SDK for the Web
58 lines (52 loc) • 1.78 kB
text/typescript
import { Barcode } from "./barcode";
import { ImageSettings } from "./imageSettings";
/**
* A result of a scanning operation on an image.
*/
export class ScanResult {
/**
* The list of barcodes found in the image (can be empty).
*/
public readonly barcodes: Barcode[];
/**
* The image data given as a byte array, formatted accordingly to the set settings ([[imageSettings]]).
*/
public readonly imageData: Uint8ClampedArray;
/**
* The configuration object defining the properties of the processed image ([[imageData]]).
*/
public readonly imageSettings: ImageSettings;
/**
* @hidden
*
* The list of manually rejected barcodes.
*/
public readonly rejectedCodes: Set<Barcode>;
/**
* @hidden
*
* Create a ScanResult instance.
*
* @param barcodes The list of barcodes found in the image.
* @param imageData The image data given as a byte array, formatted accordingly to the set settings.
* @param imageSettings The configuration object defining the properties of the processed image.
*/
constructor(barcodes: Barcode[], imageData: Uint8ClampedArray, imageSettings: ImageSettings) {
this.barcodes = barcodes;
this.imageData = imageData;
this.imageSettings = imageSettings;
this.rejectedCodes = new Set();
}
/**
* Prevent playing a sound, vibrating or flashing the GUI for a particular code.
* If all codes in the result are rejected (or no barcode is present), sound, vibration and GUI flashing will be
* suppressed.
*
* Rejected codes will still be part of the [[ScanResult.barcodes]] property like all other codes.
*
* @param barcode The barcode to be rejected.
*/
public rejectCode(barcode: Barcode): void {
this.rejectedCodes.add(barcode);
}
}