Region Capture with OCR
Region-with-OCR is a shortcut for "grab the text out of that thing on my screen". It combines region selection and text extraction into a single step and skips the annotation editor entirely.
How to Trigger
| Surface | Action |
|---|---|
| Global hotkey | Ctrl+Shift+O (remappable — see 10.2) |
| Main toolbar | Click the OCR button |
Behind the scenes this runs CaptureRegionWithOcrCommand.
Workflow
- Press
Ctrl+Shift+O. - The standard region-selection overlay appears (see 02.1).
- Click and drag the rectangle around the text you want to extract.
- Release the mouse. Tex runs OCR on the selected pixels immediately.
- The
OcrResultPopupopens with the extracted text, a confidence percentage, and the processing time. - If
Ocr.AutoCopyTextis on, the text is already on your clipboard when the popup opens.
What You Skip
Compared to a normal region capture followed by an OCR command:
- No annotation editor opens.
- The capture is not added to the inline
MainWindowpreview. - Only the OCR result is surfaced — the original pixels are still added to history if history is enabled.
Popup Actions
From the OcrResultPopup you can:
- Copy the text to the clipboard.
- Save the text to a
.txtfile. - Share the text via your default mail client.
- Review confidence and processing time badges.
Related Settings
| Setting | Default | Effect |
|---|---|---|
Ocr.Language | eng | Tesseract language model (29 supported — see 04.3) |
Ocr.AutoCopyText | false | Auto-copy extracted text to the clipboard |
Ocr.PreprocessImage | true | Run contrast / threshold / denoise before OCR |
Tip
Tip — If the text you want sits in a small UI widget, zoom the source app first (browser zoom, font scaling) then select. Tesseract is far more accurate on text that is at least 20 pixels tall.
See section 04 for the full OCR deep-dive, including language selection, preprocessing, and the OCR history viewer.