| Ocalt Query Language
Pricing Dashboard ocalt.com v1.0

OCR

Extract text from images using Tesseract OCR. Works with screenshots, downloaded images, or files in your namespace filesystem.

VerbDescription
OCR "/root/img.png" SET ?textExtract text from image at filesystem path
OCR "https://..." SET ?textDownload image and extract text
OCR ?path AS "fra" SET ?textSpecify language — ISO 639-2, default: eng

Screenshot + OCR

BROWSER OPEN "https://example.com" SET ?ok AFTER BROWSER SCREENSHOT "/root/files/snap.png" SET ?img AFTER OCR ?img SET ?text AFTER BROWSER CLOSE AFTER EMIT ?text
Try it ›

From a URL

OCR "https://example.com/receipt.png" SET ?text AFTER EMIT ?text

From a file with language

OCR "/root/files/invoice.png" AS "eng" SET ?text AFTER EMIT ?text