win_ocr 0.1.3

A library for Rust to do OCR on Windows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# win-ocr

[![win_ocr at crates.io](https://img.shields.io/crates/v/win_ocr.svg)](https://crates.io/crates/win_ocr) [![win_ocr at docs.rs](https://docs.rs/win_ocr/badge.svg)](https://docs.rs/win_ocr) [![Build](https://github.com/JichouP/win-ocr-rs/actions/workflows/Build.yml/badge.svg)](https://github.com/JichouP/win-ocr-rs/actions/workflows/Build.yml) [![Fmt](https://github.com/JichouP/win-ocr-rs/actions/workflows/Fmt.yml/badge.svg)](https://github.com/JichouP/win-ocr-rs/actions/workflows/Fmt.yml) [![Clippy](https://github.com/JichouP/win-ocr-rs/actions/workflows/clippy.yml/badge.svg)](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");
```