Skip to content

Instantly share code, notes, and snippets.

@elijahmanor
Last active May 6, 2023 23:47
Show Gist options
  • Save elijahmanor/e0fb0377d77b15cb8f3ac6e2b6cafa13 to your computer and use it in GitHub Desktop.
Save elijahmanor/e0fb0377d77b15cb8f3ac6e2b6cafa13 to your computer and use it in GitHub Desktop.
OCR from macOS Terminal

I was reviewing a PR and there was a screenshot of the terminal that had output I wanted in text form.

Terminal Screenshot

So, I installed an OCR tool locally (called tesseract) and converted the PNG into TEXT.

# Install the OCR tool
brew install tesseract tesseract-lang

# Convert the PNG to TEXT
tesseract packages.png packages

# Output the contents
cat packages.txt
@mbaneshi
Copy link

mbaneshi commented May 6, 2023

I alias it p2t,(picture to text) , so no more forgotten command
alias p2t='tesseract '

@elijahmanor
Copy link
Author

@mbaneshi smart! well done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment