win-ocr-rs

A library for Rust to do OCR on Windows.

Usage

```rust use win_ocr::ocr;

let ocrtext: String = ocr("/path/to/file.png").unwrap(); asserteq!(ocr_text, "OCR Text"); ```