Git Product home page Git Product logo

react-navtive-baidu-ocr-scanner's Introduction

react-native-baidu-ocr-idcard-scanner

Getting started

$ yarn install react-native-baidu-ocr-idcard-scanner --save

Mostly automatic installation

$ react-native link react-native-baidu-ocr-idcard-scanner

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to your project
  2. Go to node_modulesreact-native-baidu-ocr-idcard-scanner and add ReactNativeBaiduOcrScanner.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libReactNativeBaiduOcrScanner.a to your project's Build PhasesLink Binary With Libraries
  4. Add dependencies in ios/(AipBase.framework,AipOcrSdk.framework,IdcardQuality.framework) to your project's Build PhasesEmbed Frameworks
  5. Run your project (Cmd+R)<

PS: when you release your iOS app(manual or automatic use this lib), you need fllow script:

cd [your lib]
# see the architectures
lipo -info AipBase.framework/AipBase  # Architectures in the fat file: AipBase are: i386 x86_64 armv7 armv7s arm64
# remove x86_64, i386
lipo -remove x86_64 AipBase.framework/AipBase -o AipBase.framework/AipBase
lipo -remove i386 AipBase.framework/AipBase -o AipBase.framework/AipBase
lipo -remove x86_64 AipOcrSdk.framework/AipOcrSdk -o AipOcrSdk.framework/AipOcrSdk
lipo -remove i386 AipOcrSdk.framework/AipOcrSdk -o AipOcrSdk.framework/AipOcrSdk
# see the architectures again
lipo -info AipBase.framework/AipBase # Architectures in the fat file: AipBase are: armv7 armv7s arm64

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.laughing.ocr.ReactNativeBaiduOcrScannerPackage; to the imports at the top of the file
  • Add new ReactNativeBaiduOcrScannerPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-baidu-ocr-idcard-scanner'
    project(':react-native-baidu-ocr-idcard-scanner').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-baidu-ocr-idcard-scanner/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-baidu-ocr-idcard-scanner')
    

Usage

import ReactNativeBaiduOcrScanner from 'react-native-baidu-ocr-idcard-scanner';

// Authorize by BaiDu App key and App securetKey
// this method must be invoke before you invoke IDCardFrontScanner and IDCardBackScanner.
ReactNativeBaiduOcrScanner.initAccessTokenWithAkSk('ak','sk');

// Scan IDCard Front
ReactNativeBaiduOcrScanner.IDCardFrontScanner().then(function (result) {
		// Success do something by yourself
},function (error) {
    // Faild do something by yourself
});

// Scan IDCard Back
ReactNativeBaiduOcrScanner.IDCardBackScanner().then(function (result) {
		// Success do something by yourself
},function (error) {
    // Faild do something by yourself
});

License

This project is provided under the MIT license. See LICENSE file for details.

react-navtive-baidu-ocr-scanner's People

Contributors

laughingvzr avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.