Unofficial Capacitor plugin for ML Kit Text Recognition.1
The Text Recognition plugin is typically used whenever an app needs to extract text from an image, for example:
- Document digitization: Convert printed documents, receipts, or business cards into machine-readable text.
- Data entry automation: Extract text from forms or labels to prefill input fields and reduce manual typing.
- Accessibility: Read text found in images aloud to support screen readers and other assistive technologies.
- Translation pipelines: Recognize text in an image before passing it on to a translation service.
| Plugin Version | Capacitor Version | Status |
|---|---|---|
| 8.x.x | >=8.x.x | Active support |
You can use our AI-Assisted Setup to install the plugin. Add the Capawesome Skills to your AI tool using the following command:
npx skills add capawesome-team/skills --skill capacitor-pluginsThen use the following prompt:
Use the `capacitor-plugins` skill from `capawesome-team/skills` to install the `@capacitor-mlkit/text-recognition` plugin in my project.
If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:
npm install @capacitor-mlkit/text-recognition
npx cap syncAttention: This plugin only supports CocoaPods for iOS dependency management. Swift Package Manager (SPM) is not supported for the ML Kit SDK, see this comment.
This plugin bundles a separate model for each supported script (Latin, Chinese, Devanagari, Japanese, and Korean). Each model increases the size of your app by several megabytes. Keep this in mind when deciding which scripts your app actually needs.
If needed, you can define the following project variables in your app’s variables.gradle file to change the default version of the dependencies:
$mlkitTextRecognitionVersionversion ofcom.google.mlkit:text-recognition(default:16.0.1)$mlkitTextRecognitionChineseVersionversion ofcom.google.mlkit:text-recognition-chinese(default:16.0.1)$mlkitTextRecognitionDevanagariVersionversion ofcom.google.mlkit:text-recognition-devanagari(default:16.0.1)$mlkitTextRecognitionJapaneseVersionversion ofcom.google.mlkit:text-recognition-japanese(default:16.0.1)$mlkitTextRecognitionKoreanVersionversion ofcom.google.mlkit:text-recognition-korean(default:16.0.1)
This can be useful if you encounter dependency conflicts with other plugins in your project.
Make sure to set the deployment target in your ios/App/Podfile to at least 15.5:
platform :ios, '15.5'No configuration required for this plugin.
A working example can be found here: robingenz/capacitor-mlkit-plugin-demo
The following example shows how to recognize text in an image.
Recognize text in an image at a local path. You can select the script of the text to recognize. Only available on Android and iOS:
import { Script, TextRecognition } from '@capacitor-mlkit/text-recognition';
const processImage = async () => {
const { text, blocks } = await TextRecognition.processImage({
path: 'path/to/image.jpg',
script: Script.Latin,
});
return { text, blocks };
};processImage(options: ProcessImageOptions) => Promise<ProcessImageResult>Recognizes text in the supplied image.
Only available on Android and iOS.
| Param | Type |
|---|---|
options |
ProcessImageOptions |
Returns: Promise<ProcessImageResult>
Since: 8.2.0
| Prop | Type | Description | Since |
|---|---|---|---|
text |
string |
The full recognized text. | 8.2.0 |
blocks |
TextBlock[] |
The recognized blocks of text. | 8.2.0 |
Represents a block of text.
A block is a contiguous set of text lines, such as a paragraph or a column.
| Prop | Type | Description | Since |
|---|---|---|---|
text |
string |
The recognized text of the block. | 8.2.0 |
boundingBox |
Rect |
The bounding box of the block. | 8.2.0 |
cornerPoints |
Point[] |
The four corner points of the block in clockwise order, starting with the top-left point relative to the image. | 8.2.0 |
recognizedLanguage |
string |
The BCP-47 language code of the recognized language of the block. | 8.2.0 |
lines |
TextLine[] |
The recognized lines of text within the block. | 8.2.0 |
Represents a rectangle.
| Prop | Type | Description | Since |
|---|---|---|---|
left |
number |
The left coordinate of the rectangle. | 8.2.0 |
top |
number |
The top coordinate of the rectangle. | 8.2.0 |
right |
number |
The right coordinate of the rectangle. | 8.2.0 |
bottom |
number |
The bottom coordinate of the rectangle. | 8.2.0 |
Represents a point.
| Prop | Type | Description | Since |
|---|---|---|---|
x |
number |
The x coordinate of the point. | 8.2.0 |
y |
number |
The y coordinate of the point. | 8.2.0 |
Represents a line of text.
| Prop | Type | Description | Since |
|---|---|---|---|
text |
string |
The recognized text of the line. | 8.2.0 |
boundingBox |
Rect |
The bounding box of the line. | 8.2.0 |
cornerPoints |
Point[] |
The four corner points of the line in clockwise order, starting with the top-left point relative to the image. | 8.2.0 |
recognizedLanguage |
string |
The BCP-47 language code of the recognized language of the line. | 8.2.0 |
elements |
TextElement[] |
The recognized elements of text within the line. | 8.2.0 |
Represents an element of text.
An element is a contiguous set of characters, such as a word.
| Prop | Type | Description | Since |
|---|---|---|---|
text |
string |
The recognized text of the element. | 8.2.0 |
boundingBox |
Rect |
The bounding box of the element. | 8.2.0 |
cornerPoints |
Point[] |
The four corner points of the element in clockwise order, starting with the top-left point relative to the image. | 8.2.0 |
recognizedLanguage |
string |
The BCP-47 language code of the recognized language of the element. | 8.2.0 |
| Prop | Type | Description | Default | Since |
|---|---|---|---|---|
path |
string |
The local path to the image file. | 8.2.0 | |
script |
Script |
The script of the text to recognize. Each script requires a separate model that is bundled with the app. | Script.Latin |
8.2.0 |
| Members | Value | Description | Since |
|---|---|---|---|
Latin |
'LATIN' |
The Latin script. | 8.2.0 |
Chinese |
'CHINESE' |
The Chinese script. | 8.2.0 |
Devanagari |
'DEVANAGARI' |
The Devanagari script. | 8.2.0 |
Japanese |
'JAPANESE' |
The Japanese script. | 8.2.0 |
Korean |
'KOREAN' |
The Korean script. | 8.2.0 |
The processImage(...) method is only available on Android and iOS. The Web platform is not supported by the underlying ML Kit Text Recognition SDK.
The plugin supports the Latin, Chinese, Devanagari, Japanese, and Korean scripts. Use the script option to select the script of the text you want to recognize. Each script uses a separate model that is bundled with your app.
Yes. Each script model adds several megabytes to your app. All five models are bundled so that every script can be used at runtime without an additional download.
The path must be a local file path (e.g. file:///path/to/image.jpg). Remote URLs are not supported.
Yes, the plugin is framework-agnostic. It works in any Capacitor app regardless of the web framework, including Ionic with Angular, React, or Vue, as well as plain JavaScript projects.
- ML Kit Barcode Scanning: Scan barcodes with ML Kit Barcode Scanning.
- ML Kit Image Labeling: Detect labels in images with ML Kit Image Labeling.
- ML Kit Face Detection: Detect faces in images with ML Kit Face Detection.
This plugin uses the Google ML Kit:
Stay up to date with the latest news and updates about the Capawesome, Capacitor, and Ionic ecosystem by subscribing to our Capawesome Newsletter.
See CHANGELOG.md.
See LICENSE.
Footnotes
-
This project is not affiliated with, endorsed by, sponsored by, or approved by Google LLC or any of their affiliates or subsidiaries. ↩