-
Notifications
You must be signed in to change notification settings - Fork 0
Pro Integration
Luc Côté edited this page Jul 6, 2026
·
2 revisions
Tesseract Pro is a drop-in superset of the Free AAR, distributed via Gumroad (not Maven/JitPack).
| Free | Pro | |
|---|---|---|
| Bundled languages | English | 12 languages |
| Model quality | tessdata_fast |
tessdata_best |
| OpenMP multi-threading | ✗ | ✅ |
Batch API (TesseractBatch) |
✗ | ✅ |
Advanced API (TesseractAdvanced) |
✗ | ✅ |
| ABI | arm64-v8a | arm64-v8a + x86_64 |
Same package (dev.ffmpegkit.tesseract), same core API — your Free code keeps
working unchanged.
After purchase you receive tesseract-android-pro-<version>.aar (and the sample
guide). Add it as a local module or file dependency:
// app/libs/tesseract-android-pro-5.5.0.aar
dependencies {
implementation(files("libs/tesseract-android-pro-5.5.0.aar"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0")
}val batch = TesseractBatch(ocr)
val results = batch.recognizeAll(listOf(bitmap1, bitmap2, bitmap3))
results.forEach { println(it.text) }val advanced = TesseractAdvanced(ocr)
val hocr = advanced.recognizeHocr(bitmap) // hOCR / structured output
val tsv = advanced.recognizeTsv(bitmap) // TSV with layoutPro ships arm64-v8a and x86_64, so it runs on standard Android emulators —
handy for CI and desktop testing.