UNPKG

capacitor-plugin-scanbot-barcode-scanner-sdk

Version:

Scanbot Barcode Scanner SDK for Capacitor

12 lines (11 loc) 430 B
/** * Entry point for all image processing features. */ export declare const ScanbotImageProcessor: { /** * Reads image data from the given file uri and returns it as a Base 64 encoded string. * @param {string} imageFileUri - File uri of the image to be read. * @returns {Promise<string>} - The Base 64 encoded representation of the image. */ readImageData(imageFileUri: string): Promise<string>; };