qbil-software / abbyy-cloud
Interface for communication with ABBYY cloud OCR
Installs: 135 226
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 1
pkg:composer/qbil-software/abbyy-cloud
Requires
- guzzlehttp/guzzle: ~6.0
Requires (Dev)
- phpunit/phpunit: 4.8.6
This package is auto-updated.
Last update: 2025-10-29 02:29:27 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 QbilSoftware\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;