AI-driven ID scanning software for cross-platform apps built with Capacitor. Keep in mind that for full access to all features and functionalities, you’ll be better off using one of our native SDKs (iOS and Android). Not all features of native SDKs are available. However, the wrapper is open source so you can add the features that you need.
Depending on your use case you can choose the recognizer that fits your needs:
- BlinkIDSingleSide recognizer
- Scans and extracts data from the front side of the document as well as any machine readable travel document (MRTD). View list of supported documents here
- BlinkIDMultiSide recognizer
- For scanning both sides of the supported document as well as any machine readable travel document. Passports and travel visas included. Here’s a list of documents that you can scan with BlinkID. For more details about the extracted fields click here.
- BlinkID IDBarcode recognizer
- Extract data from various barcodes found on identity documents. You can find a list of supported documents here
Below, you'll find everything you need to add BlinkID in your Capacitor iOS or Android app ⬇️
Package depends on BlinkID SDK and it is required to download and install BlinkID iOS SDK and BlinkID Android SDK. For more information on how to do that, please check our Platform specifics section.
BlinkID plugin is developed with Capacitor version 6.1.1. For help with Capacitor, view official documentation.
BlinkID Capacitor plugin supports iOS 13.0 or newer.
BlinkID Capacitor plugin support Android Android 5.1 (API level 22) or newer.
To get started, first create empty project if needed:
ionic start project_name --capacitor
Install blinkid-capacitor package:
npm install --save @microblink/blinkid-capacitor
Sample app is built with latest Ionic framework and it uses Angular. To try BlinkID plugin, you can generate a minimal sample application. To do so run ./initIonicSampleApp.sh
script.
To run sample application:
-
iOS
- Open the app in Xcode by running
npx cap open ios
from the sample app's root directory - Open info.plist and add corresponding permissions to the app
- Privacy - Camera Usage Description: To Take Photos and Video
- Open
Signing & Capabilities
and set your Team - Press
Run
- Open the app in Xcode by running
-
Android
- Run the app by executing
npx cap run android
from the sample app's root directory
- Run the app by executing
-
Import blinkid-capacitor package
import * as BlinkID from '@microblink/blinkid-capacitor';
-
Initialize plugin
const plugin = new BlinkID.BlinkIDPlugin();
-
Perform scanning by calling the method
plugin.scanWithCamera()
and passRecognizerCollection
,OverlaySettings
you wish to use and license keys. To find out more about licensing, click here.async scan() { // Initialize plugin const plugin = new BlinkID.BlinkIDPlugin(); // Initialize wanted recognizer const blinkIdMultisideRecognizer = new BlinkID.BlinkIdMultiSideRecognizer(); blinkIdMultisideRecognizer.returnFullDocumentImage = true; blinkIdMultisideRecognizer.returnFaceImage = true; // Initialize license const licenseKeys: BlinkID.License = { ios: '<your_ios_license>', android: '<your_android_license>', showTimeLimitedLicenseKeyWarning: true }; // Perform scan and gather results const scanningResults = await plugin.scanWithCamera( new BlinkID.BlinkIdOverlaySettings(), new BlinkID.RecognizerCollection([blinkIdMultisideRecognizer]), licenseKeys ); }
-
When scanning is completed, variable
scanningResults
will contain a list of non-emptyRecognizerResults
from recognizers set inRecognizerCollection
. You can then access each result individually. If the scanning is manually closed, the method will return an empty list.
For more information please refer to our sample files in SampleFiles folder and sample application source code.
All available recognizers can be found inside BlinkID/src/recognizers
.
All available overlays can be found inside BlinkID/src/overlays
.
Plugin implementation is in folder src
, while platform specific implementations are in android
and ios
folders.
To initialize BlinkID framework for use with iOS, after you've added the dependency to @microblink/blinkid-capacitor
to your project, go to NameOfYourProject/ios
and run pod install
.
Our @microblink/blinkid-capacitor
depends on the latest PPBlinkID pod so it will be installed automatically.
BlinkID plugin on Android is ready to use after you've added the dependency.
- A valid license key is required to initialize scanning. You can request a free trial license key, after you register, at Microblink Developer Hub
- Get information about pricing and licensing of BlinkID