scandit-sdk
Version:
Scandit Barcode Scanner SDK for the Web
266 lines (265 loc) • 11.8 kB
TypeScript
import { ListenerFn } from "eventemitter3";
import { ImageSettings } from "./imageSettings";
import { Parser } from "./parser";
import { ParserResult } from "./parserResult";
import { ScanResult } from "./scanResult";
import { ScanSettings } from "./scanSettings";
/**
* @hidden
*/
declare type EventName = "ready" | "licenseFeaturesReady" | "newScanSettings";
/**
* A low-level scanner interacting with the external Scandit Engine library.
* Used to set up scan / image settings and to process single image frames.
*
* The loading of the external Scandit Engine library which takes place on creation can take some time,
* the [[on]] method targeting the [[ready]] event can be used to set up a listener function to be called when the
* library is loaded and the [[isReady]] method can return the current status. The scanner will be ready to start
* scanning when the library is fully loaded.
*
* In the special case where a single [[Scanner]] instance is shared between multiple active [[BarcodePicker]]
* instances, the fairness in resource allocation for processing images between the different pickers is not guaranteed.
*/
export declare class Scanner {
private readonly engineWorker;
private readonly eventEmitter;
private scanSettings;
private imageSettings?;
private workerParseRequestId;
private workerScanRequestId;
private workerScanQueueLength;
private isReadyToWork;
private licenseFeatures?;
private imageDataConversionContext?;
/**
* Create a Scanner instance.
*
* It is required to having configured the library via [[configure]] before this object can be created.
*
* Before processing an image the relative settings must also have been set.
*
* If the library has not been correctly configured yet a `LibraryNotConfiguredError` error is thrown.
*
* If a browser is incompatible a `UnsupportedBrowserError` error is thrown.
*
* @param scanSettings <div class="tsd-signature-symbol">Default = new ScanSettings()</div>
* The configuration object for scanning options.
* @param imageSettings <div class="tsd-signature-symbol">Default = undefined</div>
* The configuration object to define the properties of an image to be scanned.
*/
constructor({ scanSettings, imageSettings }?: {
scanSettings?: ScanSettings;
imageSettings?: ImageSettings;
});
/**
* Stop the internal `WebWorker` and destroy the scanner itself; ensuring complete cleanup.
*
* This method should be called after you don't plan to use the scanner anymore,
* before the object is automatically cleaned up by JavaScript.
* The barcode picker must not be used in any way after this call.
*/
destroy(): void;
/**
* Apply a new set of scan settings to the scanner (replacing old settings).
*
* @param scanSettings The scan configuration object to be applied to the scanner.
* @returns The updated [[Scanner]] object.
*/
applyScanSettings(scanSettings: ScanSettings): Scanner;
/**
* Apply a new set of image settings to the scanner (replacing old settings).
*
* @param imageSettings The image configuration object to be applied to the scanner.
* @returns The updated [[Scanner]] object.
*/
applyImageSettings(imageSettings: ImageSettings): Scanner;
/**
* Clear the scanner session.
*
* This removes all recognized barcodes from the scanner session and allows them to be scanned again in case a custom
* *codeDuplicateFilter* was set in the [[ScanSettings]].
*
* @returns The updated [[Scanner]] object.
*/
clearSession(): Scanner;
/**
* Process a given image using the previously set scanner and image settings,
* recognizing codes and retrieving the result as a list of barcodes (if any).
*
* Multiple requests done without waiting for previous results will be queued and handled in order.
*
* If *highQualitySingleFrameMode* is enabled the image will be processed with really accurate internal settings,
* resulting in much slower but more precise scanning results. This should be used only for single images not part
* of a continuous video stream.
*
* Passing image data as a *Uint8ClampedArray* is the fastest option, passing a *HTMLImageElement* will incur
* in additional operations.
*
* Depending on the current image settings, given *imageData* and scanning execution, any of the following errors
* could be the rejected result of the returned promise:
* - `NoImageSettings`
* - `ImageSettingsDataMismatch`
* - `ScanditEngineError`
*
* @param imageData The image data given as byte array or image element, complying with the previously set
* image settings.
* @param highQualitySingleFrameMode Whether to process the image as a high quality single frame.
* @returns A promise resolving to the [[ScanResult]] object.
*/
processImage(imageData: Uint8ClampedArray | HTMLImageElement, highQualitySingleFrameMode?: boolean): Promise<ScanResult>;
/**
* @returns Whether the scanner is currently busy processing an image.
*/
isBusyProcessing(): boolean;
/**
* @returns Whether the scanner has loaded the external Scandit Engine library and is ready to scan.
*/
isReady(): boolean;
/**
* Add the listener function to the listeners array for an event.
*
* No checks are made to see if the listener has already been added.
* Multiple calls passing the same listener will result in the listener being added, and called, multiple times.
*
* @param eventName The name of the event to listen to.
* @param listener The listener function.
* @returns The updated [[Scanner]] object.
*/
on(eventName: EventName, listener: ListenerFn): Scanner;
/**
* Add the listener function to the listeners array for the [[ready]] event, fired only once when the external
* Scandit Engine library has been loaded and the scanner can thus start to scan barcodes.
* If the external Scandit Engine library has already been loaded the listener is called immediately.
*
* No checks are made to see if the listener has already been added.
* Multiple calls passing the same listener will result in the listener being added, and called, multiple times.
*
* @param eventName The name of the event to listen to.
* @param listener The listener function.
* @returns The updated [[Scanner]] object.
*/
on(eventName: "ready", listener: () => void): Scanner;
/**
* Add the listener function to the listeners array for the [[ready]] event, fired only once when the external
* Scandit Engine library has been loaded and the scanner can thus start to scan barcodes.
* If the external Scandit Engine library has already been loaded the listener is called immediately.
*
* No checks are made to see if the listener has already been added.
* Multiple calls passing the same listener will result in the listener being added, and called, multiple times.
*
* @deprecated Use the [[on]] method instead.
*
* @param listener The listener function.
* @returns The updated [[Scanner]] object.
*/
onReady(listener: () => void): Scanner;
/**
* *See the [[on]] method.*
*
* @param eventName The name of the event to listen to.
* @param listener The listener function.
* @returns The updated [[Scanner]] object.
*/
addListener(eventName: EventName, listener: ListenerFn): Scanner;
/**
* Create a new parser object.
*
* @param dataFormat The format of the input data for the parser.
* @returns The newly created parser.
*/
createParserForFormat(dataFormat: Parser.DataFormat): Parser;
/**
* Return the current image settings.
*
* Note that modifying this object won't directly apply these settings: the [[applyImageSettings]] method must be
* called with the updated object.
*
* @returns The current image settings.
*/
getImageSettings(): ImageSettings | undefined;
/**
* Return the current scan settings.
*
* Note that modifying this object won't directly apply these settings: the [[applyScanSettings]] method must be
* called with the updated object.
*
* @returns The current scan settings.
*/
getScanSettings(): ScanSettings;
/**
* @hidden
*
* Process a given string using the Scandit Parser library,
* parsing the data in the given format and retrieving the result as a [[ParserResult]] object.
*
* Multiple requests done without waiting for previous results will be queued and handled in order.
*
* If parsing of the data fails the returned promise is rejected with a `ScanditEngineError` error.
*
* @param dataFormat The format of the given data.
* @param dataString The string containing the data to be parsed.
* @param options Options for the specific data format parser.
* @returns A promise resolving to the [[ParserResult]] object.
*/
parseString(dataFormat: Parser.DataFormat, dataString: string, options?: object): Promise<ParserResult>;
/**
* @hidden
*
* Add the listener function to the listeners array for the "licenseFeaturesReady" event, fired only once
* when the external Scandit Engine library has verified and loaded the license key and parsed its features.
* If the license features are already available the listener is called immediately.
*
* No checks are made to see if the listener has already been added.
* Multiple calls passing the same listener will result in the listener being added, and called, multiple times.
*
* @param listener The listener function, which will be invoked with a *licenseFeatures* object.
* @returns The updated [[Scanner]] object.
*/
onLicenseFeaturesReady(listener: (licenseFeatures: object) => void): Scanner;
/**
* @hidden
*
* Add the listener function to the listeners array for the "newScanSettings" event, fired when new a new
* [[ScanSettings]] object is applied via the [[applyScanSettings]] method.
*
* No checks are made to see if the listener has already been added.
* Multiple calls passing the same listener will result in the listener being added, and called, multiple times.
*
* @param listener The listener function, which will be invoked with a [[ScanSettings]] object.
* @returns The updated [[Scanner]] object.
*/
onNewScanSettings(listener: (scanSettings: ScanSettings) => void): Scanner;
/**
* @hidden
*
* Remove the specified listener from the given event's listener array.
*
* @param eventName The name of the event from which to remove the listener.
* @param listener The listener function to be removed.
* @returns The updated [[Scanner]] object.
*/
removeListener(eventName: string, listener: ListenerFn): Scanner;
private applyLicenseKey;
private engineWorkerOnMessage;
}
export declare namespace Scanner {
/**
* @hidden
*
* Fired when the external Scandit Engine library has verified and loaded the license key and parsed its features.
*
* @asMemberOf Scanner
* @event
* @param licenseFeatures The features of the used license key.
*/
/**
* @hidden
*
* Fired when new a new [[ScanSettings]] object is applied via the [[applyScanSettings]] method.
*
* @asMemberOf Scanner
* @event
* @param newScanSettings The features of the used license key.
*/
}
export {};