# win-ocr
[](https://crates.io/crates/win_ocr) [](https://docs.rs/win_ocr) [](https://github.com/JichouP/win-ocr-rs/actions/workflows/Build.yml) [](https://github.com/JichouP/win-ocr-rs/actions/workflows/Fmt.yml) [](https://github.com/JichouP/win-ocr-rs/actions/workflows/clippy.yml)
A library for Rust to do OCR on Windows.
## Usage
```rust
use win_ocr::ocr;
let ocr_text: String = ocr("/path/to/file.png").unwrap();
assert_eq!(ocr_text, "OCR Text");
```