shonezlo/abbyy-cloud

Interface for communication with ABBYY cloud OCR

Maintainers

Package info

github.com/shonezlo/abbyy-cloud

Issues

pkg:composer/shonezlo/abbyy-cloud

Statistics

Installs: 25

Dependents: 0

Suggesters: 0

Stars: 1

v1.0.0 2015-09-03 10:01 UTC

This package is not auto-updated.

Last update: 2026-04-26 03:57:10 UTC


README

Interface for communication with ABBYY cloud OCR

Usage

First, you have to register with ABBYY Cloud: https://cloud.ocrsdk.com/Account/Register

1. Init
use ShoneZlo\AbbyyCloud\AbbyyClient;
$abbyy = new AbbyyClient('my app name', 'my-app-key');
2. Submit image (and wait for a while)
$imagePath = '/absolute/path/to-image.jpg';
$text = $abbyy->performOcr($imagePath);
3. Results!
echo $text;