SkillAgentSearch skills...

TextRecognizer

By this library you can extract text from image.

Install / Use

/learn @mahimrocky/TextRecognizer
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

TextRecognizer

This library extend google vision . And initilay it read text from image. for reading text from image you have to give image Uri or Bitmap.

Sample Alt Text

Setup

Setup part is simple

Root Gradle

    allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

App Gradle:

dependencies {
	        implementation 'com.github.mahimrocky:TextRecognizer:1.0.0'
	}

Api

 TextScanner.getInstance(this)
                .init()
                .load(uri) // uri or bitmap
                .getCallback(new TextExtractCallback() {
                    @Override
                    public void onGetExtractText(List<String> textList) {
                        // Here you will get list of text

                    }
                });

Happy coding

View on GitHub
GitHub Stars63
CategoryDevelopment
Updated1y ago
Forks20

Languages

Java

Security Score

70/100

Audited on Mar 17, 2025

No findings