OCR
Extract text from images using Tesseract OCR. Works with screenshots, downloaded images, or files in your namespace filesystem.
| Verb | Description |
|---|---|
OCR "/root/img.png" SET ?text | Extract text from image at filesystem path |
OCR "https://..." SET ?text | Download image and extract text |
OCR ?path AS "fra" SET ?text | Specify 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