Detection on the Image | Cordova Document Scanner
Detects a check on a still image (PNG or JPG file) regardless of the image source (e.g. scanned document image, image picked from photo library, etc).
recognizeCheckOnImage(args: RecognizeCheckOnImageArgs): Promise<RecognizeCheckResult>
interface RecognizeCheckOnImageArgs {
/**
* The input image file URI.
*/
imageFileUri: string;
/**
* An optional array of check types that act as a detection filter.
* By default all supported check formats will be detected.
*/
acceptedCheckStandards?: CheckStandard[];
}
import ScanbotSdk from 'cordova-plugin-scanbot-sdk';
private SDK = ScanbotSdk.promisify();
// Always make sure you have a valid license on runtime via SDK.getLicenseInfo()
if (!licenseCheckMethod()) { return; }
const result = await this.SDK.recognizeCheckOnImage({
imageFileUri: imageUri
});
// Handle the detected check(s) from result
Want to scan longer than one minute?
Generate a free trial license to test the Scanbot SDK thoroughly.
Get free trial licenseScanbot SDK is part of the Apryse SDK product family
A mobile scan is just the start. With Apryse SDKs, you can expand mobile workflows into full cross‑platform document processing. Whether you need to edit PDFs, add secure digital signatures, or use a fast, customizable document viewer and editor, Apryse gives you the tools to build powerful features quickly.
Learn more
