ScanbotBarcodeSDK: {
    cleanup(): Promise<string>;
    detectBarcodesOnImage(params): Promise<BarcodeScannerResult>;
    extractImagesFromPDF(params): Promise<string[]>;
    getImageData(params): Promise<string>;
    getLicenseInfo(): Promise<LicenseInfoResult>;
    initializeSdk(config): Promise<LicenseInfoResult>;
    startBarcodeScanner(config): Promise<ResultWrapper<BarcodeScannerUiResult>>;
}

Type declaration

  • cleanup:function
    • Remove all files generated by this plugin.

      Returns Promise<string>

  • detectBarcodesOnImage:function
  • extractImagesFromPDF:function
    • Extract images from a PDF represented by the file URL. The PDF file URL is part of the input parameters.

      Returns Promise<string[]>

  • getImageData:function
    • Returns the Base 64 encoded representation of the image data.

      Parameters

      • params: {
            imageFileUri: string;
        }
        • imageFileUri: string

      Returns Promise<string>

  • getLicenseInfo:function
  • initializeSdk:function
  • startBarcodeScanner:function