Skip to content

ocr via screenshot, file arg, or stdin

Notifications You must be signed in to change notification settings

adam-zethraeus/macOCR

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

macOCR

macOCR is a command line app that runs OCR on text on your secreen.

Takes file, stdin, or screencapture as input.

How it works

Installation

> git clone git@github.com:adam-zethraeus/macOCR.git
> cd macOCR
> swift build -c release
> .build/release/ocr -h                                                                                      
USAGE: ocr [--capture] [-r <r>] [--stdin] [-i <i>]

OPTIONS:
  -c, --capture           Capture screenshot. 
  -r <r>                  Rectangle to unattendedly capture (-r x,y,w,h), needs --capture.
  -s, --stdin             Read stdin binary data. 
  -i <i>                  Path to input image. 
  -h, --help              Show help information.

# You can place the binary in a folder in your $PATH
> PATH=$PATH:~/bin
> cp .build/release/ocr ~/bin
> cat test.png | ocr
Some text in your image

When running the app the first time, you will be asked to allow the app access to your screen.

Enable it in: System Preferences > Security & Privacy > Privacy > Screen Recording.

OS Support

The Swift package is enabled for Big Sur / macOS v11.

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

ocr via screenshot, file arg, or stdin

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 96.4%
  • Shell 3.6%