OCR
This plugin attempts to identify and extract text from an image.
Please note: This plugin depends on the GoogleMobileVision pod which is referencing UIWebview, that has been deprecated by Apple.
Don't use this plugin in an app intended for App Store as you will get a review rejection from Apple:
Deprecated API Usage — Apple will stop accepting submissions of apps that use UIWebView APIs
For more info, please see the following Github issue
Google Mobile Vision relying on deprecated UIWebview.
Cordovaの問題で困っていますか?

本格的なプロジェクトを構築している場合、トラブルシューティングに時間を費やす余裕はありません。Ionicのエキスパートが、保守、サポート、統合に関する公式サポートを提供しています。
インストール
Ionic Native Enterprise はIonic Teamが完全にサポートしメンテナンスしているプラグインを利用できます。 詳しくみる か、 エンタープライズプラグインに興味があれば 連絡ください
サポートしているプラットフォーム
- Android
- iOS
利用方法
React
Angular
import { OCR, OCRSourceType } from '@ionic-native/ocr/ngx';
constructor(private ocr: OCR) { }
...
this.ocr.recText(OCRSourceType.NORMFILEURL, "file://path/to/image.png")
.then((res: OCRResult) => console.log(JSON.stringify(res)))
.catch((error: any) => console.error(error));