OcrBoard
A Windows hotkey OCR tool that captures screen regions and sends them to a "macocr" OCR server
Install / Use
/learn @riddleling/OcrBoardREADME
OcrBoard
A lightweight global hotkey OCR tool for Windows.
Select any region on screen and instantly send it to an OCR server.
OcrBoard supports macocr or iOS-OCR-Server as its backend OCR server.

Features
- Global hotkey: Win + Alt + Shift + T
- Region selection with dimmed overlay
- ESC to cancel selection
- Automatically copies OCR result to clipboard
- Displays OCR result in a message box
- Shows API response time in console
- Supports custom server IP / port
How It Works
- Press Win + Alt + Shift + T
- Drag to select a region
- Image is sent to the OCR server
- OCR result:
- Copied to clipboard
- Displayed in a popup
Backend OCR is powered by macocr or iOS-OCR-Server.
Requirements
Client (OcrBoard)
- Windows 10 or later
- Go 1.20+ (for building from source)
Server
You must run macocr as the OCR server.
macocr repository:
https://github.com/riddleling/macocr
Start macocr server (example):
macocr -s -p 8000
How to get OcrBoard
Download .exe from GitHub Releases.
Running OcrBoard
An example of specifying the server IP and port:
.\OcrBoard.exe -ip 10.0.1.13 -port 8000
Or create a .bat file:
@echo off
cd /d "%~dp0"
OcrBoard.exe -ip 10.0.1.13 -port 8000
Command Line Options
| Option | Description | Default |
| ------- | ------------------------------- | ----------- |
| -ip | OCR server IP | 127.0.0.1 |
| -port | OCR server port | 8000 |
| -path | API path | /upload |
| -url | Full API URL (overrides others) | — |
Build From Source
git clone https://github.com/riddleling/OcrBoard.git
cd OcrBoard
go mod tidy
go build
Notes
- Make sure macocr server is running before triggering the hotkey.
- If hotkey does not respond, check:
- Another application is not using the same key combination
- Windows accessibility features are not intercepting the shortcut
License
MIT License
