mnc_identifier_ocr

Creator: coderz1093

Last updated:

Add to Cart

Description:

mnc identifier ocr

MNC Identifier OCR #

A Flutter plugin for Android and iOS for scanning KTP
Installation #
Add dependency #
You can use the command to add MNC Identifier OCR as a dependency with the latest stable version:
$ dart pub add mnc_identifier_ocr
copied to clipboard
Or you can manually add MNC Identifier OCR into the dependencies section in your pubspec.yaml:
dependencies:
mnc_identifier_ocr: ^replace-with-latest-version
copied to clipboard
The latest version is: 1.0.20
Additional Steps #
Android #
This plugin requires Android SDK 21 or higher.
Add CaptureOCRActivity into your AndroidManifest.xml
<activity android:name="id.mncinnovation.ocr.CaptureOCRActivity" android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
copied to clipboard
iOS #
This plugin requires iOS 11.0 or higher.
Add NSCameraUsageDescription key to your info.plist file. Describe why your app needs access to the camera. This is called Privacy - Camera Usage Description in the visual editor.
Usage #
import 'package:mnc_identifier_ocr/mnc_identifier_ocr.dart';
import 'package:mnc_identifier_ocr/model/ocr_result_model.dart';

...

Future<void> scanKtp() async {
try {
OcrResultModel res = await MncIdentifierOcr.startCaptureKtp(withFlash: true, cameraOnly: true);
debugPrint('result: ${res.toString()}');
} catch (e) {
debugPrint('something goes wrong $e');
}
}
copied to clipboard
Note: on iOS, this plugin only works on real device

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.